This documentation refers to an earlier version of Islandora. https://wiki.duraspace.org/display/ISLANDORA/Start is current.

Install Java 6 jdk

 Open a command line interface and enter the following:

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:
 

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
  • No labels