catalina.sh
上传用户:zhangkaihu
上传日期:2008-02-20
资源大小:3690k
文件大小:11k
源码类别:

Web服务器

开发平台:

Java

  1. #!/bin/sh
  2. # -----------------------------------------------------------------------------
  3. # Start/Stop Script for the CATALINA Server
  4. #
  5. # Environment Variable Prequisites
  6. #
  7. #   CATALINA_HOME   May point at your Catalina "build" directory.
  8. #
  9. #   CATALINA_BASE   (Optional) Base directory for resolving dynamic portions
  10. #                   of a Catalina installation.  If not present, resolves to
  11. #                   the same directory that CATALINA_HOME points to.
  12. #
  13. #   CATALINA_OPTS   (Optional) Java runtime options used when the "start",
  14. #                   "stop", or "run" command is executed.
  15. #
  16. #   CATALINA_TMPDIR (Optional) Directory path location of temporary directory
  17. #                   the JVM should use (java.io.tmpdir).  Defaults to
  18. #                   $CATALINA_BASE/temp.
  19. #
  20. #   JAVA_HOME       Must point at your Java Development Kit installation.
  21. #                   Required to run the with the "debug" or "javac" argument.
  22. #
  23. #   JRE_HOME        Must point at your Java Development Kit installation.
  24. #                   Defaults to JAVA_HOME if empty.
  25. #
  26. #   JAVA_OPTS       (Optional) Java runtime options used when the "start",
  27. #                   "stop", or "run" command is executed.
  28. #
  29. #   JPDA_TRANSPORT  (Optional) JPDA transport used when the "jpda start"
  30. #                   command is executed. The default is "dt_socket".
  31. #
  32. #   JPDA_ADDRESS    (Optional) Java runtime options used when the "jpda start"
  33. #                   command is executed. The default is 8000.
  34. #
  35. #   JSSE_HOME       (Optional) May point at your Java Secure Sockets Extension
  36. #                   (JSSE) installation, whose JAR files will be added to the
  37. #                   system class path used to start Tomcat.
  38. #
  39. #   CATALINA_PID    (Optional) Path of the file which should contains the pid
  40. #                   of catalina startup java process, when start (fork) is used
  41. #
  42. # $Id: catalina.sh,v 1.19 2005/03/03 15:13:39 remm Exp $
  43. # -----------------------------------------------------------------------------
  44. # OS specific support.  $var _must_ be set to either true or false.
  45. cygwin=false
  46. os400=false
  47. case "`uname`" in
  48. CYGWIN*) cygwin=true;;
  49. OS400*) os400=true;;
  50. esac
  51. # resolve links - $0 may be a softlink
  52. PRG="$0"
  53. while [ -h "$PRG" ]; do
  54.   ls=`ls -ld "$PRG"`
  55.   link=`expr "$ls" : '.*-> (.*)$'`
  56.   if expr "$link" : '.*/.*' > /dev/null; then
  57.     PRG="$link"
  58.   else
  59.     PRG=`dirname "$PRG"`/"$link"
  60.   fi
  61. done
  62. # Get standard environment variables
  63. PRGDIR=`dirname "$PRG"`
  64. # Only set CATALINA_HOME if not already set
  65. [ -z "$CATALINA_HOME" ] && CATALINA_HOME=`cd "$PRGDIR/.." ; pwd`
  66. if [ -r "$CATALINA_HOME"/bin/setenv.sh ]; then
  67.   . "$CATALINA_HOME"/bin/setenv.sh
  68. fi
  69. # For Cygwin, ensure paths are in UNIX format before anything is touched
  70. if $cygwin; then
  71.   [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
  72.   [ -n "$JRE_HOME" ] && JRE_HOME=`cygpath --unix "$JRE_HOME"`
  73.   [ -n "$CATALINA_HOME" ] && CATALINA_HOME=`cygpath --unix "$CATALINA_HOME"`
  74.   [ -n "$CATALINA_BASE" ] && CATALINA_BASE=`cygpath --unix "$CATALINA_BASE"`
  75.   [ -n "$CLASSPATH" ] && CLASSPATH=`cygpath --path --unix "$CLASSPATH"`
  76.   [ -n "$JSSE_HOME" ] && JSSE_HOME=`cygpath --absolute --unix "$JSSE_HOME"`
  77. fi
  78. # For OS400
  79. if $os400; then
  80.   # Set job priority to standard for interactive (interactive - 6) by using
  81.   # the interactive priority - 6, the helper threads that respond to requests
  82.   # will be running at the same priority as interactive jobs.
  83.   COMMAND='chgjob job('$JOBNAME') runpty(6)'
  84.   system $COMMAND
  85.   # Enable multi threading
  86.   export QIBM_MULTI_THREADED=Y
  87. fi
  88. # Get standard Java environment variables
  89. if $os400; then
  90.   # -r will Only work on the os400 if the files are:
  91.   # 1. owned by the user
  92.   # 2. owned by the PRIMARY group of the user
  93.   # this will not work if the user belongs in secondary groups
  94.   BASEDIR="$CATALINA_HOME"
  95.   . "$CATALINA_HOME"/bin/setclasspath.sh 
  96. else
  97.   if [ -r "$CATALINA_HOME"/bin/setclasspath.sh ]; then
  98.     BASEDIR="$CATALINA_HOME"
  99.     . "$CATALINA_HOME"/bin/setclasspath.sh
  100.   else
  101.     echo "Cannot find $CATALINA_HOME/bin/setclasspath.sh"
  102.     echo "This file is needed to run this program"
  103.     exit 1
  104.   fi
  105. fi
  106. # Set juli LogManager if it is present
  107. if [ -r "$CATALINA_HOME"/bin/tomcat-juli.jar ]; then
  108.   JAVA_OPTS="$JAVA_OPTS "-Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager
  109. fi
  110. # Add on extra jar files to CLASSPATH
  111. if [ -n "$JSSE_HOME" ]; then
  112.   CLASSPATH="$CLASSPATH":"$JSSE_HOME"/lib/jcert.jar:"$JSSE_HOME"/lib/jnet.jar:"$JSSE_HOME"/lib/jsse.jar
  113. fi
  114. CLASSPATH="$CLASSPATH":"$CATALINA_HOME"/bin/bootstrap.jar:"$CATALINA_HOME"/bin/commons-logging-api.jar
  115. if [ -z "$CATALINA_BASE" ] ; then
  116.   CATALINA_BASE="$CATALINA_HOME"
  117. fi
  118. if [ -z "$CATALINA_TMPDIR" ] ; then
  119.   # Define the java.io.tmpdir to use for Catalina
  120.   CATALINA_TMPDIR="$CATALINA_BASE"/temp
  121. fi
  122. # For Cygwin, switch paths to Windows format before running java
  123. if $cygwin; then
  124.   JAVA_HOME=`cygpath --absolute --windows "$JAVA_HOME"`
  125.   JRE_HOME=`cygpath --absolute --windows "$JRE_HOME"`
  126.   CATALINA_HOME=`cygpath --absolute --windows "$CATALINA_HOME"`
  127.   CATALINA_BASE=`cygpath --absolute --windows "$CATALINA_BASE"`
  128.   CATALINA_TMPDIR=`cygpath --absolute --windows "$CATALINA_TMPDIR"`
  129.   CLASSPATH=`cygpath --path --windows "$CLASSPATH"`
  130.   [ -n "$JSSE_HOME" ] && JSSE_HOME=`cygpath --absolute --windows "$JSSE_HOME"`
  131.   JAVA_ENDORSED_DIRS=`cygpath --path --windows "$JAVA_ENDORSED_DIRS"`
  132. fi
  133. # ----- Execute The Requested Command -----------------------------------------
  134. echo "Using CATALINA_BASE:   $CATALINA_BASE"
  135. echo "Using CATALINA_HOME:   $CATALINA_HOME"
  136. echo "Using CATALINA_TMPDIR: $CATALINA_TMPDIR"
  137. if [ "$1" = "debug" -o "$1" = "javac" ] ; then
  138.   echo "Using JAVA_HOME:       $JAVA_HOME"
  139. else
  140.   echo "Using JRE_HOME:       $JRE_HOME"
  141. fi
  142. if [ "$1" = "jpda" ] ; then
  143.   if [ -z "$JPDA_TRANSPORT" ]; then
  144.     JPDA_TRANSPORT="dt_socket"
  145.   fi
  146.   if [ -z "$JPDA_ADDRESS" ]; then
  147.     JPDA_ADDRESS="8000"
  148.   fi
  149.   if [ -z "$JPDA_OPTS" ]; then
  150.     JPDA_OPTS="-Xdebug -Xrunjdwp:transport=$JPDA_TRANSPORT,address=$JPDA_ADDRESS,server=y,suspend=n"
  151.   fi
  152.   CATALINA_OPTS="$CATALINA_OPTS $JPDA_OPTS"
  153.   shift
  154. fi
  155. if [ "$1" = "debug" ] ; then
  156.   if $os400; then
  157.     echo "Debug command not available on OS400"
  158.     exit 1
  159.   else
  160.     shift
  161.     if [ "$1" = "-security" ] ; then
  162.       echo "Using Security Manager"
  163.       shift
  164.       exec "$_RUNJDB" $JAVA_OPTS $CATALINA_OPTS 
  165.         -Djava.endorsed.dirs="$JAVA_ENDORSED_DIRS" -classpath "$CLASSPATH" 
  166.         -sourcepath "$CATALINA_HOME"/../../jakarta-tomcat-catalina/catalina/src/share 
  167.         -Djava.security.manager 
  168.         -Djava.security.policy=="$CATALINA_BASE"/conf/catalina.policy 
  169.         -Dcatalina.base="$CATALINA_BASE" 
  170.         -Dcatalina.home="$CATALINA_HOME" 
  171.         -Djava.io.tmpdir="$CATALINA_TMPDIR" 
  172.         org.apache.catalina.startup.Bootstrap "$@" start
  173.     else
  174.       exec "$_RUNJDB" $JAVA_OPTS $CATALINA_OPTS 
  175.         -Djava.endorsed.dirs="$JAVA_ENDORSED_DIRS" -classpath "$CLASSPATH" 
  176.         -sourcepath "$CATALINA_HOME"/../../jakarta-tomcat-catalina/catalina/src/share 
  177.         -Dcatalina.base="$CATALINA_BASE" 
  178.         -Dcatalina.home="$CATALINA_HOME" 
  179.         -Djava.io.tmpdir="$CATALINA_TMPDIR" 
  180.         org.apache.catalina.startup.Bootstrap "$@" start
  181.     fi
  182.   fi
  183. elif [ "$1" = "run" ]; then
  184.   shift
  185.   if [ "$1" = "-security" ] ; then
  186.     echo "Using Security Manager"
  187.     shift
  188.     exec "$_RUNJAVA" $JAVA_OPTS $CATALINA_OPTS 
  189.       -Djava.endorsed.dirs="$JAVA_ENDORSED_DIRS" -classpath "$CLASSPATH" 
  190.       -Djava.security.manager 
  191.       -Djava.security.policy=="$CATALINA_BASE"/conf/catalina.policy 
  192.       -Dcatalina.base="$CATALINA_BASE" 
  193.       -Dcatalina.home="$CATALINA_HOME" 
  194.       -Djava.io.tmpdir="$CATALINA_TMPDIR" 
  195.       org.apache.catalina.startup.Bootstrap "$@" start
  196.   else
  197.     exec "$_RUNJAVA" $JAVA_OPTS $CATALINA_OPTS 
  198.       -Djava.endorsed.dirs="$JAVA_ENDORSED_DIRS" -classpath "$CLASSPATH" 
  199.       -Dcatalina.base="$CATALINA_BASE" 
  200.       -Dcatalina.home="$CATALINA_HOME" 
  201.       -Djava.io.tmpdir="$CATALINA_TMPDIR" 
  202.       org.apache.catalina.startup.Bootstrap "$@" start
  203.   fi
  204. elif [ "$1" = "start" ] ; then
  205.   shift
  206.   touch "$CATALINA_BASE"/logs/catalina.out
  207.   if [ "$1" = "-security" ] ; then
  208.     echo "Using Security Manager"
  209.     shift
  210.     "$_RUNJAVA" $JAVA_OPTS $CATALINA_OPTS 
  211.       -Djava.endorsed.dirs="$JAVA_ENDORSED_DIRS" -classpath "$CLASSPATH" 
  212.       -Djava.security.manager 
  213.       -Djava.security.policy=="$CATALINA_BASE"/conf/catalina.policy 
  214.       -Dcatalina.base="$CATALINA_BASE" 
  215.       -Dcatalina.home="$CATALINA_HOME" 
  216.       -Djava.io.tmpdir="$CATALINA_TMPDIR" 
  217.       org.apache.catalina.startup.Bootstrap "$@" start 
  218.       >> "$CATALINA_BASE"/logs/catalina.out 2>&1 &
  219.       if [ ! -z "$CATALINA_PID" ]; then
  220.         echo $! > $CATALINA_PID
  221.       fi
  222.   else
  223.     "$_RUNJAVA" $JAVA_OPTS $CATALINA_OPTS 
  224.       -Djava.endorsed.dirs="$JAVA_ENDORSED_DIRS" -classpath "$CLASSPATH" 
  225.       -Dcatalina.base="$CATALINA_BASE" 
  226.       -Dcatalina.home="$CATALINA_HOME" 
  227.       -Djava.io.tmpdir="$CATALINA_TMPDIR" 
  228.       org.apache.catalina.startup.Bootstrap "$@" start 
  229.       >> "$CATALINA_BASE"/logs/catalina.out 2>&1 &
  230.       if [ ! -z "$CATALINA_PID" ]; then
  231.         echo $! > $CATALINA_PID
  232.       fi
  233.   fi
  234. elif [ "$1" = "stop" ] ; then
  235.   shift
  236.   FORCE=0
  237.   if [ "$1" = "-force" ]; then
  238.     shift
  239.     FORCE=1
  240.   fi
  241.   "$_RUNJAVA" $JAVA_OPTS $CATALINA_OPTS 
  242.     -Djava.endorsed.dirs="$JAVA_ENDORSED_DIRS" -classpath "$CLASSPATH" 
  243.     -Dcatalina.base="$CATALINA_BASE" 
  244.     -Dcatalina.home="$CATALINA_HOME" 
  245.     -Djava.io.tmpdir="$CATALINA_TMPDIR" 
  246.     org.apache.catalina.startup.Bootstrap "$@" stop
  247.   if [ $FORCE -eq 1 ]; then
  248.     if [ ! -z "$CATALINA_PID" ]; then
  249.        echo "Killing: `cat $CATALINA_PID`"
  250.        kill -9 `cat $CATALINA_PID`
  251.     fi
  252.   fi
  253. elif [ "$1" = "version" ] ; then
  254.     "$_RUNJAVA"   
  255.       -classpath "$CATALINA_HOME/server/lib/catalina.jar" 
  256.       org.apache.catalina.util.ServerInfo
  257. else
  258.   echo "Usage: catalina.sh ( commands ... )"
  259.   echo "commands:"
  260.   if $os400; then
  261.     echo "  debug             Start Catalina in a debugger (not available on OS400)"
  262.     echo "  debug -security   Debug Catalina with a security manager (not available on OS400)"
  263.   else
  264.     echo "  debug             Start Catalina in a debugger"
  265.     echo "  debug -security   Debug Catalina with a security manager"
  266.   fi
  267.   echo "  jpda start        Start Catalina under JPDA debugger"
  268.   echo "  run               Start Catalina in the current window"
  269.   echo "  run -security     Start in the current window with security manager"
  270.   echo "  start             Start Catalina in a separate window"
  271.   echo "  start -security   Start in a separate window with security manager"
  272.   echo "  stop              Stop Catalina"
  273.   echo "  stop -force       Stop Catalina (followed by kill -KILL)"
  274.   echo "  version           What version of tomcat are you running?"
  275.   exit 1
  276. fi