linux下tomcat加入服务,及设置自启动

时间:2021-09-14 15:37:46

参考自:support.filecatalyst.com/index.php?/Knowledgebase/Article/View/210/0/starting-tomcat-as-a-linux-service

1、将以下内容保存成文件,名称为tomcat(无后缀名)

#!/bin/bash
# This is the init script for starting up the
# Jakarta Tomcat server
#
# chkconfig: 345 91 10
# description: Starts and stops the Tomcat daemon.
#

# Source function library.
. /etc/rc.d/init.d/functions

# Get config.
. /etc/sysconfig/network

# Check that networking is up.
[ "${NETWORKING}" = "no" ] && exit 0

export JAVA_HOME=/home/jdk1.7.0_21
tomcat_home=/home/apache-tomcat-6.0.39
startup=$tomcat_home/bin/startup.sh
shutdown=$tomcat_home/bin/shutdown.sh

start(){
echo -n "Starting Tomcat service:"
cd $tomcat_home
$startup
echo "tomcat is succeessfully started up"
}

stop(){
echo -n "Shutting down tomcat: "
cd $tomcat_home
$shutdown
echo "tomcat is succeessfully shut down."
}

status(){
numproc=`ps -ef | grep catalina | grep -v "grep catalina" | wc -l`
if [ $numproc -gt 0 ]; then
echo "Tomcat is running..."
else
echo "Tomcat is stopped..."
fi
}

restart(){
stop
start
}

# See how we were called.
case "$1" in
start)
start
;;
stop)
stop
;;
status)
status
;;
restart)
restart
;;
*)
echo $"Usage: $0 {start|stop|status|restart}"
exit 1
esac
注意:以上代码中的TOMCAT_HOME与JAVA_HOME需更改为自己对应的路径

2、将文件复制到/etc/init.d/下

3、添加文件可执行权限

chmod a+x /etc/init.d/tomcat

4、将tomcat添加到服务中

chkconfig --add tomcat

5、若是还需tomcat随linux系统启动而自动启动,则只需设置如下:

chkconfig tomcat on

over!