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

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Current »

Install Java 6/7 jdk (Oracle)

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

$ sudo add-apt-repository ppa:webupd8team/java
$ sudo apt-get update
$ sudo apt-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 install Java.

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