Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
  • Create a tarball snapshot backup of MySQL and Drupal

    Code Block
    # $FEDORA_HOME/tomcat/bin/shutdown.sh
    # /etc/init.d/mysql stop
    # /etc/init.d/apacheapache2 stop
    
    # cd /var/lib 
    # tar -cvzf mysql-backup.tar.gz mysql
    # cd /var/www
    # tar -cvzf drupal-backup.tar.gz drupal
     
    # /etc/init.d/mysql start
    # $FEDORA_HOME/tomcat/bin/startup.sh
    # /etc/init.d/apacheapache2 start
  • Access the Modules section of Drupal and take note of all Islandora modules, solutions packs and libraries that are loaded. You could just as well make a recursive list of the contents of /var/www/sites

...

  • Create a new milestone 5 snapshot backup of MySQL and Drupal

    Code Block
    # $FEDORA_HOME/tomcat/bin/shutdown.sh
    # /etc/init.d/mysql stop
    # /etc/init.d/apacheapache2 stop
    
    # cd /var/lib 
    # tar -cvzf mysql-milestone5.tar.gz mysql
    
    # cd /var/www
    # tar -cvzf drupal-milestone5.tar.gz drupal
    
    # /etc/init.d/mysql start
    # $FEDORA_HOME/tomcat/bin/startup.sh
    # /etc/init.d/apacheapache2 start