码迷,mamicode.com
首页 > 系统相关 > 详细

Linux 重启Tomcat脚本

时间:2016-04-25 19:17:55      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:

 

 

#!/bin/test_restart.sh #Author : Javen
#Desc : restart tomcat-test
 
tomcatpath="/home/local/testJaven/tomcat-test"
tomcatname="tomcat-test"
 
 
if [ $# -ne 1 ]; then
        ps -ef | grep java | grep ${tomcatpath};
        pid=$(ps -ef | grep java | grep ${tomcatpath} | awk {print $2})
else
        pid=$1
fi
 
echo -e "Before start ${tomcatpath}, should kill the same run, kill pid ${pid}, and will start new ${tomcatname}  \c"
kill -9 $pid
sleep 9
cd ${tomcatpath}/bin
./startup.sh

 
如果执行提示没有权限 添加一下执行权限 chmod +x test_restart.sh 

Linux 重启Tomcat脚本

标签:

原文地址:http://www.cnblogs.com/zyw-205520/p/5432158.html

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