欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

tomcat在Linux下开机启动

程序员文章站 2022-05-08 23:51:07
...
以下是一个非常简单的tomcat脚本

# chkconfig: 2345 96 70
# description: Starts and Stops Tomcat.

JAVA_HOME=/root/jdk1.6.0_26
CATALINA_HOME=/home/apache-tomcat-6.0.41
export JAVA_HOME CATALINA_HOME

exec $CATALINA_HOME/bin/catalina.sh $*



将tomcat文件移动到/etc/init.d/文件目录下


chown root.root tomcat
chmod 775 tomcat

chkconfig --add tomcat
chkconfig --level 2345 tomcat on


在init.d目录下的文件将为service服务

# chkconfig: 2345(启动级别) 96(启动优先权,优先权数越大服务启动的越晚) 70(停止优先权)

exec $CATALINA_HOME/bin/catalina.sh $*

举例说:脚本名称叫test.sh 传入参三个: 1 2 3
运行test.sh 1 2 3后
$*为"1 2 3"(一起被引号包住)
[email protected]为"1" "2" "3"(分别被包住)
$#为3(参数数量)
相关标签: tomcat