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

linux下写tomcat启动,重启的脚本

时间:2018-02-07 21:23:15      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:tin   set   gre   bin   height   hid   编码   style   bsp   

启动:

#bash/bin
cd /finance/
LANG="en_US.UTF-8"
export LANG
/finance/tomcat8-finance/bin/catalina.sh start
echo "tomcat8-finance starting..."

写入改shell文件,赋予权限,就直接可执行。

重启:

#bash/bin
ps -ef|grep tomcat8-finance|grep -v grep|awk ‘{print $2}‘|xargs kill -9

cd /finance/
LANG="en_US.UTF-8"
export LANG
/finance/tomcat8-finance/bin/catalina.sh start
echo "tomcat8-finance restarting....."

停止进程:

#bash/bin
ps -ef|grep tomcat8-finance|grep -v grep|awk ‘{print $2}‘|xargs kill -9
echo "Kill tomcat8-finance success"

写脚本的时候要注意编码不能是dos。vi 进入文件,用  :set ff 查看。  :set ff=""修改,一定要给脚本赋予权限。一定要有  

#bash/bin 这个头。

linux下写tomcat启动,重启的脚本

标签:tin   set   gre   bin   height   hid   编码   style   bsp   

原文地址:https://www.cnblogs.com/xiaoheis/p/8428228.html

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