4123ed 发表于 2015-11-6 09:43:56

centos安装tomcat (用shell脚本安装为服务)

#! /bin/sh
#shell script takes care of starting and stopping
# the glassfish DAS and glassfish instance.
#
# chkconfig: - 64 36
# description: Tomcat auto start
# /etc/init.d/tomcatd
# Tomcat auto-start
# Source function library.
#. /etc/init.d/functions
# source networking configuration.
#. /etc/sysconfig/network
RETVAL=0
export JRE_HOME=/usr/local/jdk1.7.0
export CATALINA_HOME=/home/tomcat
export CATALINA_BASE=/home/tomcat
start()
{
      if [ -f $CATALINA_HOME/bin/startup.sh ];
          then
            echo $"Starting Tomcat"
                $CATALINA_HOME/bin/startup.sh
            RETVAL=$?
            echo " OK"
            return $RETVAL
      fi
}
stop()
{
      if [ -f $CATALINA_HOME/bin/shutdown.sh ];
          then
            echo $"Stopping Tomcat"
                $CATALINA_HOME/bin/shutdown.sh
            RETVAL=$?
            sleep 1
            ps -fwwu yhjhoo(系统用户名) | grep apache-tomcat|grep -v grep | grep -v PID | awk '{print $2}'|xargs kill -9
            echo " OK"
            # [ $RETVAL -eq 0 ] && rm -f /var/lock/...
            return $RETVAL
      fi
}

case "$1" in
start)
      start
      ;;
stop)
      stop
      ;;

restart)
         echo $"Restaring Tomcat"
         $0 stop
         sleep 1
         $0 start
         ;;
*)
      echo $"Usage: $0 {start|stop|restart}"
      exit 1
      ;;
esac
exit $RETVAL

页: [1]
查看完整版本: centos安装tomcat (用shell脚本安装为服务)