Changes between Version 7 and Version 8 of oid/WorkLog/09-01-21


Ignore:
Timestamp:
Jan 21, 2009, 4:58:25 PM (16 years ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • oid/WorkLog/09-01-21

    v7 v8  
    2626 * 把 WAR 檔放到 /var/lib/tomcat5.5/webapps 底下,如果遇到 "Reload this Page  FAIL - Application at context path /${NAME} could not be started"的錯誤訊息,代表要設定 JAVA_HOME 或 JRE_HOME 環境變數。
    2727   * [http://www.dmdeveloper.com/forum/showthread.php?threadid=7844 參考解答]
    28    * 修改 /etc/default/tomcat5.5
     28   * 修改 /etc/default/tomcat5.5 -> 還是沒用 :(
    2929{{{
    3030#!diff
     
    4141 # directories conf, logs, webapps, work and temp. See RUNNING.txt for details.
    4242}}}
     43   * 大絕招!!!! 改 /etc/init.d/tomcat5.5
     44{{{
     45#!sh
     46#!/bin/sh
     47#
     48# /etc/init.d/tomcat5.5 -- startup script for the Tomcat 5 servlet engine
     49#
     50set -e
     51
     52PATH=/bin:/usr/bin:/sbin:/usr/sbin
     53NAME=tomcat5.5
     54DESC="Tomcat servlet engine"
     55DAEMON=/usr/bin/jsvc
     56CATALINA_HOME=/usr/share/$NAME
     57DEFAULT=/etc/default/$NAME
     58
     59case "$1" in
     60  start)
     61        export JAVA_HOME=/usr/lib/jvm/java-6-sun
     62        $CATALINA_HOME/bin/startup.sh
     63        ;;
     64  stop)
     65        export JAVA_HOME=/usr/lib/jvm/java-6-sun
     66        $CATALINA_HOME/bin/shutdown.sh
     67        ;;
     68  *)
     69        echo "Usage: $0 {start|stop}"
     70        exit 1
     71        ;;
     72esac
     73
     74exit 0
     75}}}