Versions Compared

Key

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

...

  • (01:55 Thomas/Emily) Backup all configuration files in production staging area
    • /afs/.ucdavis.edu/app/sakai/staging/config/*
      • Code Block
        mkdir /afs/.ucdavis.edu/app/sakai/staging/config/config-2-3-x.bak
        cp /afs/.ucdavis.edu/app/sakai/staging/config/* /afs/.ucdavis.edu/app/sakai/staging/config/config-2-3-x.bak/
        

  • (02:10 Thomas/Emily) Start process of preparing Sakai v2.4.x source on the head node (stubing).
    • Getting the source code:
      • Code Block
        cd ~/src
        svn co https://mware.ucdavis.edu/svn/ucd-sakai/sakai/tags/sakai_2-4-x-prod-001
        

    • Setting up the build environment:
    • ~/build.properties
      • Code Block
        maven.repo.remote=http://source.sakaiproject.org/maven/,httphttps://svnmware.ucdavis.edu/maven/,http://www.ibiblio.org/maven2/
        maven.tomcat.home=/ucd/opt/sakai/tomcat-staging/
        maven.compile.source = 1.5
        maven.compile.target = 1.5
        

    • ~/.bash_profile
      • Code Block
        PATH=/ucd/opt/java5/bin:/ucd/opt/maven/bin:$PATH
        MAVEN_HOME=/ucd/opt/maven
        CATALINA_HOME=/ucd/pkg/apache-tomcat
        JAVA_HOME=/ucd/opt/java5
        JAVA_OPTS=" -d64 -server -Xmx6144m -Xms6144m -XX:NewSize=512m -XX:MaxNewSize=512m -XX:PermSize=256m -XX:MaxPermSize=512m -verbose:gc -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -Dsakai.home=/ucd/opt/sakai/sakai-home/"
        CATALINA_OPTS="-Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=9000 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false"
        MAVEN_OPTS="-Xmx1024m -Xms1024m"
        export PATH MAVEN_HOME CATALINA_HOME JAVA_HOME JAVA_OPTS CATALINA_OPTS MAVEN_OPTS
        

    • Delete old tomcat content
      • Code Block
        rm -fr /ucd/pkg/apache-tomcat/*
        

    • Delete old tomcat staging build
      • Code Block
        cd ~/bin
        ./tomcatclean.sh
        

    • Build the source code
      • Code Block
        cd ~/src/sakai_2-4-x-prod-001
        maven sakai
        

    • Copy staged tomcat
      • Code Block
        rm -fr /ucd/pkg/apache-tomcat/*
        cp -R /afs/.ucdavis.edu/app/sakai-test/staging/tomcat/apache-tomcat-5.5.23/* /ucd/pkg/apache-tomcat/
        

  • (02:50 Thomas/Emily) Making sure all the configuration files are in place for v2.4.x such as sakai.properties etc.
    • Configure JAVA_OPTS to allow JMX access via JConsole
    • Synchronize all configuration files on the head node (stubing) with the AFS configuration staging area
      • /afs/.ucdavis.edu/app/sakai/staging/config
    • Edit sakai.properties on stubing
      • Code Block
        performChatMigration@org.sakaiproject.chat2.model.impl.ChatDataMigration=true
        chatMigrationExecuteImmediate@org.sakaiproject.chat2.model.impl.ChatDataMigration=true
        auto.ddl=true
        

    • Start-up head node (stubing) and check catalina.out for any errors
      • This startup will take longer than the usual because of the chat conversion
      • Check catalina.out for DB errors
      • Once the head node started up without any errors and you see the message that the chat conversion has completed, shut it down again
    • Edit sakai.properties on stubing
      • Code Block
        #performChatMigration@org.sakaiproject.chat2.model.impl.ChatDataMigration=false
        #chatMigrationExecuteImmediate@org.sakaiproject.chat2.model.impl.ChatDataMigration=false
        auto.ddl=false
        
    • Configure site creation to send email to smartsite-request@ucdavis.edu when unusual roster requests are made
    • Start-up head node (stubing) again
      • Make sure that there are no errors in catalina.out
    • Access head node and perform any appropriate testing
    • If there are no errors/problems, perform installation on second node (walton)
    • Start-up walton and perform any appropriate testing
  • (03:30 Kirk, Sandra, ...) Release SmartSite for initial testing to determine "successful upgrade"
  • (06:55 Joncarlo) Adjust iptables on all nodes (stubing, walton) to allow public access
  • (07:00) System ready for public access

...