Versions Compared

Key

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

...

  1. Shutdown Sakai
    Code Block
    /home/ucdtest/cle/tomcat/bin/shutdown.sh
    
    Now until the java process is dead, do:
    Code Block
    ps -ef | grep tomcat | grep ucdtest
    
    At some point you are going to get impatient and want to kill the process. Please try to wait at least 30 seconds. When you kill it, do:
    Code Block
    kill -9 <procid>
    
    Warning

    As its possible that this server may be running other java processes, do NOT killall -9 java or as such. Do a kill -9 on a proc id. The person running the extraneous java process will thank you for your discretion.

  2. Cleanup Tomcat directory.
    You will:
    Code Block
    export CATALINA_STAGING=/home/ucdtest/cle/tomcat
    ~/bin/tomcatclean.sh
    
  3. Build/Deploy sakai
    Code Block
    cd /src/cle/rSmart-CLE-2.8.7.4-ea1-ucdtest/cle/
    ./mvn.sh tomcat install sakai:deploy -Psakai2.8 -Dgb2.ui.version=<tag name>
    
  4. Get setup to launch:
    Code Block
    cd ~/cle/tomcat/logs/
    mv catalina.out catalina.out.predeploy
    touch catalina.out
    tail -f catalina.out
    

...