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:

Code Block
languagebash
$ sudo add-apt-repository ppa:webupd8team/java
$ sudo apt-get update
$ sudo apt-get install sunoracle-java6java7-jdkinstaller


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 SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER, CREATE TEMPORARY TABLES ON [drupaldatabase].* TO '[drupaldbuserdrupaldatabaseuser]'@'localhost' IDENTIFIED BY '[password]'; 
 
flush privileges;
exit