码迷,mamicode.com
首页 > 其他好文 > 详细

Toncat启动脚本

时间:2017-09-02 00:09:15      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:tomcat   shell   

#!/bin/bash
# description: Tomcat script
# processname: 
# chkconfig: 234 20 80
#
JAVA_HOME=/usr/java/jdk1.7.0_79  ###  自己的jdk路径  ###
export JAVA_HOME
PATH=$JAVA_HOME/bin:$PATH
export PATH
CATALINA_HOME=${tomcat_home}   ###   tomcat目录   ###
TOMCAT_PORT=8888
#pid=`ps aux |grep /home/app/tomcat7|grep -v grep|awk ‘{print $2}‘`
tomcat_pid=`/usr/sbin/lsof -n -P -t -i :$TOMCAT_PORT`
# chown -R tomcat:tomcat ${tomcat_home}

case $1 in
start)
/bin/su tomcat -s /bin/bash $CATALINA_HOME/bin/startup.sh
if [ $? = 0 ];then
   echo  "start OK"
else
   echo  "the tomcat is no starting"
fi
;;
stop)
#/bin/su tomcat -s /bin/bash $CATALINA_HOME/bin/shutdown.sh
kill -9 $tomcat_pid
if [ $? = 0 ];then
   echo  "stop OK"
else
   echo  "failure"
fi
;;
restart)
#/bin/su tomcat -s /bin/bash $CATALINA_HOME/bin/shutdown.sh
kill -9 $tomcat_pid
if [ $? = 0 ];then
   echo  "stop OK"
else
   echo  "failure"
fi
sleep 3
/bin/su tomcat -s /bin/bash $CATALINA_HOME/bin/startup.sh
if [ $? = 0 ];then
   echo  "start OK"
else
   echo  "the tomcat is no starting"
fi
;;
*)
echo "Usage: tomcatd {start|stop|restart|status}"
esac
exit 0

# chmod +x /etc/init.d/tomcat.sh
# chkconfig --add tomcat.sh    //添加开机自启动
# chkconfig tomcat.sh on
# chkconfig --list|grep 3:on     //查看是否成功添加


本文出自 “11009859” 博客,请务必保留此出处http://11019859.blog.51cto.com/11009859/1961956

Toncat启动脚本

标签:tomcat   shell   

原文地址:http://11019859.blog.51cto.com/11009859/1961956

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!