1. 程式人生 > >linux下tomcat加入服務,及設定自啟動

linux下tomcat加入服務,及設定自啟動

參考自: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!