Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

Install Java 6 jdk

 Open a command line interface and enter the following:

Code Block
apt-get install sun-java6-jdk


For other variants you may have to add other repos or manually download and scp.

Setup mySQL databases

 Assuming an existing mySQL installation, execute the following:
 

Code Block
create database [fedoradatabase];
create database [drupaldatabase];
GRANT ALL ON [fedoradatabase].* TO [fedoradbuser] IDENTIFIED BY [password]; 
GRANT ALL ON [drupaldatabase].* TO [drupaldbuser] IDENTIFIED BY [password];
 
flush privileges;
exit