Page tree

Versions Compared

Key

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

...

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;

...

Next, hit the website with a browser,http://localhost:8080/ or change localhost to the ip address if you are not launching the browser off of the server.

Tip

If you have been following this tutorial on how to setup Ubuntu, your firewall may be enabled. Make sure to enable access to port 8080.

The very first time Confluence starts it asks you to make selections,

Warning

Everything below here eeds needs to be flushed out better.

...

Connect Apache to Confluence using Mod_JK

To connect Apache to Confluence see my article ...As this install of Confluence is powered by Tomcat, read the instructions at Apache Tomcat Connector for fronting the Apache Web Server in front of Confluence.

Stoping the Service

There appears to be a problem with shutting down the server. Read up on this. What I currently do is check to see if the service is running,

...