Page tree

Versions Compared

Key

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

...

First we need to grab the JDK 2.x file and after the JDBC4 Driver file. The JBDC4 Driver file needs to be in the lib folder in apache-tomcat.
So we start by going to the Java SE site and use the wget command to get the file.

Code Block
languagebash


sudo apt-get install ia32-libs
su - serveradmin
chmod u+x jdk-6u27-linux-i586.bin
./jdk-6u27-linux-i586.bin
sudo ln -s ./jdk1.6.0_27 ./java
cd /atlassian-crowd-2.3.2/apache-tomcat/lib/
wget http://jdbc.postgresql.org/download/postgresql-8.4-701.jdbc4.jar

...