Page tree

Versions Compared

Key

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

...

The downloaded Confluence package is powered by Tomcat. You can specify Tomcat use a specific java directory by creating a setenv file as described at Running Tomcat with a specific JRE version.

Warning

Take from Tomcat 6 instructions, but pull out into separate pageThis can be improved by moving "how to specify java for Tomcat" out of the Tomcat 6 setup instructions into a separate page and then using an "include" here.

Configure Data Directory

...

First log into the PostgreSQL prompt as explain in PostgreSQL on Ubuntu|wiki/display/bonsai/6.0+PostgreSQL\.

Create the confluence database admin account,CREATE ROLE confluencedbuser LOGIN ENCRYPTED PASSWORD 'putYourPasswordHere'
NOINHERIT
VALID UNTIL 'infinity';
COMMENT ON ROLE confluencedbuser IS 'Account used by the Confluence application.';
Create the database.
CREATE DATABASE confluencedb
WITH ENCODING='UTF8'
OWNER=confluencedbuser
CONNECTION LIMIT=-1;

...