以前要启动tomcat的时候,经常要使用命令
[root@bjm6-16-71 bin]# pwd /opt/soft/tomcat/bin [root@bjm6-16-71 bin]# ./shutdown.sh && ./startup.sh
后来,嫌弃敲这两个命令太麻烦了,想整合成一个restart命令,tomcat为什么不给提供下呢?
改下的命令如下:
#!/bin/sh API_TOMCAT_HOME=/opt/soft/tomcat #CATALINA_BASE=$(cd "$(dirname $0)"; pwd) W_LOG=/opt/w/logs
nohup sh $API_TOMCAT_HOME/bin/shutdown.sh nohup sh $API_TOMCAT_HOME/bin/startup.sh tail -fn100 $W_LOG/${1}.com.log
1、启动命令如果不加nohup的话,关闭中断,tomcat进程会中断
2、可以将脚本放在系统环境变量中,这样不用每次都进入脚本目录执行
因为我们使用的是tomcat集群,后来想在一台server上部署了脚本,通过参数重启其他3台server,因为要使用ssh登录,搞的比较麻烦,现在还是每台server上放了一个脚本。
版权声明:本文为博主原创文章,未经博主允许不得转载。
原文地址:http://blog.csdn.net/codetomylaw/article/details/47273299