Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Download the tar.gz install package and decompress it,

Code Block
languagebash
su - serveradmin # if you are not already
gunzip confluence-3.2-std.tar.gz
tar -xvpf confluence-3.2-std.tar
su - bhitch # log in as a staff user that can run sudo
# Use specific version numbers. This will make upgrade easier in the future.
sudo mv home/serveradmin/confluence-3.2-std /opt/
Code Block
langhtml
su - serveradmin # if you are not already
gunzip confluence-3.2-std.tar.gz
tar -xvpf confluence-3.2-std.tar
su - bhitch # log in as a staff user that can run sudo
# Use specific version numbers. This will make upgrade easier in the future.
sudo mv home/serveradmin/confluence-3.2-std /opt/

...

Code Block
langhtml
useURIValidationHack="false" URIEncoding="UTF-8"/>

        <Connector port="8009" protocol="AJP/1.3" URIEncoding="UTF-8" />

        <Engine name="Standalone" 



Info

The UTF-8 is important as Confluence is developed to post using UTF-8.

Without this setting errors occur when working with attachments containing special characters. Further details are covered in the Bonsai Tomcat Connector article.

...

Code Block
langhtml
<Context path="/wiki" docBase="../confluence" debug="0" reloadable="false" useHttpOnly="true"> 

This change does not take effect until the Confluence service stopped and started again. We will do that in the the next section.

...