Page tree

Versions Compared

Key

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

...

Note

The name of the database is different than in the confluence documentation. Rather than the database name confluence, we use confluencedb to clearly designate a database.

Setup

...

Updated JDBC Driver

Note

As of Confluence 4.x the PostgreSQL  Sometimes the most PostgreSQL recent JDBC4 driver is up to date to match JDBC4. Originally there was a mismatch. This section is useful as a reference for future version mismatches or manual upgrades of the driver.

...

not always available with Confluence. If that is the case and you want to take advantage of the newer driver follow these steps.

Download the most recent JDBC4 driver from the PostgreSQL website and place the jar file into the /opt/confluence/confluence/WEB-INF/lib/ directory. Then delete the old JDBC4 driver.

Code Block
languagebash
su - serveradmin
cd /opt/confluence/confluence/WEB-INF/lib/
wget http://jdbc.postgresql.org/download/postgresql-9.1-901.jdbc4.jar
rm /opt/confluence/confluence/WEB-INF/lib/postgresql-9.0-801.jdbc4.jar

...