Versions Compared

Key

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

...

  • download version 7.36
  • Create tarball snapshot backup of Fedora, MySQL and Drupal

    Code Block
    # $FEDORA_HOME/tomcat/bin/shutdown.sh
    # /etc/init.d/mysql stop
    # /etc/init.d/apache stop
    
    # cd /var/www
    # tar -cvzf drupal-7.31-backup.tar.gz drupal
    
  • install drupal 7.36 (check milestone 2 - Installing Drupal for more details)

    Code Block
    # mv drupal drupal-7.31-old
    # unzip drupal-7.36.zip
    # mv drupal-7.36.zip drupal
    # cd drupal-7.31-old
    # rsync -va sites /var/www/drupal
    # rsync -va libraries /var/www/drupal
    # rsync -va jwplayer /var/www/drupal
    # rsync -va php /var/www/drupal
    
    # /etc/init.d/mysql start
    # $FEDORA_HOME/tomcat/bin/startup.sh
    # /etc/init.d/apache start
  • Access the Reports menu of your Islandora site, and proceed to do any further updates it may require. http://localhost/node#overlay=admin/reports

  • Test the updated modules (check the test section of the milestone 2 - Installing Drupal for more details)
  • Create a new milestone 2 snapshot backup of your site:

    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 drupal
    
    # /etc/init.d/mysql start
    # $FEDORA_HOME/tomcat/bin/startup.sh
    # /etc/init.d/apache start