Versions Compared

Key

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

Install Java 6/7 jdk (Oracle)

 Open a command line interface and enter the following (Ubuntu):

Code Block
languagebash
$ sudo add-apt-repository ppa:webupd8team/java
$ sudo apt-get update
$ sudo install sun-java6-jdkapt-get install oracle-java7-installer
$ sudo apt-get install oracle-java7-set-default


For other *nix variants you may have to add other repos or manually download and scpinstall Java.

Setup

...

MySQL database

 Assuming an existing mySQL MySQL installation, execute the following:
 

Code Block
languagesql
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