Changes between Version 7 and Version 8 of oid/WorkLog/09-01-21
- Timestamp:
- Jan 21, 2009, 4:58:25 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
oid/WorkLog/09-01-21
v7 v8 26 26 * 把 WAR 檔放到 /var/lib/tomcat5.5/webapps 底下,如果遇到 "Reload this Page FAIL - Application at context path /${NAME} could not be started"的錯誤訊息,代表要設定 JAVA_HOME 或 JRE_HOME 環境變數。 27 27 * [http://www.dmdeveloper.com/forum/showthread.php?threadid=7844 參考解答] 28 * 修改 /etc/default/tomcat5.5 28 * 修改 /etc/default/tomcat5.5 -> 還是沒用 :( 29 29 {{{ 30 30 #!diff … … 41 41 # directories conf, logs, webapps, work and temp. See RUNNING.txt for details. 42 42 }}} 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 # 50 set -e 51 52 PATH=/bin:/usr/bin:/sbin:/usr/sbin 53 NAME=tomcat5.5 54 DESC="Tomcat servlet engine" 55 DAEMON=/usr/bin/jsvc 56 CATALINA_HOME=/usr/share/$NAME 57 DEFAULT=/etc/default/$NAME 58 59 case "$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 ;; 72 esac 73 74 exit 0 75 }}}