Versions Compared

Key

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

This is the Sakai a.k.a SmartSite troubleshooting guide. If you need more information please contact Thomas Amsler tpamsler@ucdavis.edu

Need To Start Sakai

  • Become the sakai user
    • sudo su - sakai
  • Make sure that sakai is not running
    • ps ax | grep java | grep /ucd/pkg/apache-tomcat
      • If it is running stop it
    • cd /ucd/opt/sakai/bin
    • ./stop.sh
      • Check again if it is still running. Sometimes, it does not stop with the above command. If it's still running, execute:
    • "kill -9 PID" or "killall -9 java"

Need To Stop Sakai

  • Check the process list if it actually is running first by executing:
    • ps ax | grep java | grep /ucd/pkg/apache-tomcat
  • Then to stop it execute:
    • cd /ucd/opt/sakai/bin
    • ./stop.sh
  • Check again if it is still running. Sometimes, it does not stop with the above command. If it's still running, execute:
    • kill -9 PID
      • or:
    • killall -9 java