linux suse把tomcat设为自启动

xufuangchao 2011-07-18

一、创建启动/停止脚本文件

通过一下脚本,可以使Tomcat以Service方式运行。

#!/bin/bash

#chkconfig:23451090

#description:StartsandStopstheTomcatdaemon.

TOMCAT_HOME=/usr/local/tomcat/apache-tomcat-5.5.25

TOMCAT_START=$TOMCAT_HOME/bin/startup.sh

TOMCAT_STOP=$TOMCAT_HOME/bin/shutdown.sh

#necessaryenvironmentvariablesexport

CATALINA_HOME=$TOMCAT_HOME

exportJAVA_HOME=/usr/java/jdk1.6.0_03

#sourcefunctionlibrary.

./etc/rc.d/init.d/functions

#sourcenetworkingconfiguration.

./etc/rc.d/network

#checkthatnetworkingisup.

["${NETWORKING}"="no"]&&exit0

#checkfortomcatscript

if[!-f$TOMCAT_HOME/bin/catalina.sh]

thenecho"Tomcatnotvalilable..."

exit

fi

start(){

echo-n"StartingTomcat:"

daemon$TOMCAT_START

echo

touch/var/lock/subsys/tomcat

}

stop(){

echo-n$"ShuttingdownTomcat:"

daemon$TOMCAT_STOP

rm-f/var/lock/subsys/tomcat.pidecho

}

restart(){

stop

start

}

status(){

psax--width=1000|grep"[o]rg.apache.catalina.startup.Bootstrapstart"|awk'{printf$1""}'|wc|awk'{print$2}'>/tmp/tomcat_process_count.txt

readline</tmp/tomcat_process_count.txt

if[$line-gt0];then

echo-n"tomcat(pid"

psax--width=1000|grep"org.apache.catalina.startup.Bootstrapstart"|awk'{printf$1""}'

echo-n")isrunning..."

echo

else

echo"Tomcatisstopped"

fi

}

case"$1"in

start)

start;;

stop)

stop;;

restart)

stop

sleep3

start;;

status)

status;;

*)

echo"Usage:tomcatd{start|stop|restart|status}"

exit1

esac

exit 0

二、保存并设置脚本文件

将以上的脚本文件保存在/etc/init.d中,命名为tomcat;

设置tomcat的文件属性

#chmod a+x tomcat

三、设置服务运行级别

最后用chkconfig设置服务运行

#chkconfig --add tomcat

服务就添加成功了。

然后你就可以用 chkconfig --list 查看,在服务列表里就会出现自定义的服务了。

注意: 在tomcat文件的头两行的注释语句中,需要包含chkconfig和description两部分内容(确认不要拼写错误,),否则在执行“chkconfig --add tomcat”时,会出现“tomcat服务不支持chkconfig”的错误提示。

chkconfig这行表示缺省启动的运行级别以及启动和停止的优先级,如该服务缺省不再任何运行级启动,则以 - 代替运行级别。在tomcat中表示脚本在运行级2、3、4、5启动,启动优先权为10,停止优先权为90。

description行对服务进行描述,可以用 “/” 跨行注释。 这样你就学会了SUSE Linux Tomcat自动启动过程。

相关推荐