Versions Compared

Key

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

...

  1. Obtain the latest Drupal release and extract the contents of the compressed file (as of this writing it was 7.34)

    Code Block
    languagebash
    $# cd /opt/downloads
    $# wget http://ftp.drupal.org/files/projects/drupal-x.x.tar.gz
    $# tar -xzvf drupal-x.x.tar.gz
    Info

    Remember: the "x.x" is in reference to whatever Drupal version you would download. This version of Islandora is currently only compatible with Drupal 7.x.x

    If you're intending to use a version of Islandora other than 7.x.x, please reference previously documentation that can be found here.

  2. Change directory ("cd") to the location where you wish to install Drupal. For example, a very common Apache web directory is "/var/www/

    Code Block
    languagebash
    $# cdmkdir /var/www/drupal
  3. Move the contents of  the drupal-x.x directory into a directory within your web server's document root or public HTML directory (ensure that the .htaccess file, a hidden file, is successfully moved into the destination directory as well).

    Code Block
    languagesql
    $# mv -v /opt/downloads/drupal-x.x/* /var/www/drupal
    Note
    Please note:
    • Your Apache config will need to so reflect the path to your Islandora install. Apache site/virtual host configuration files are ideal.

...

Code Block
# $FEDORA_HOME/tomcat/bin/shutdown.sh
# /etc/init.d/mysql stop
# /etc/init.d/apache stop

# cd /usr/local 
# tar -cvzf fedora-milestone2.tar.gz fedora

# cd /var/lib 
# tar -cvzf mysql-milestone2.tar.gz mysql

# cd /var /www
# tar -cvzf drupal-milestone2.tar.gz wwwdrupal

# /etc/init.d/mysql start
# $FEDORA_HOME/tomcat/bin/startup.sh
# /etc/init.d/apache start

...