小编给大家分享一下如何编写shell脚本实现tomcat定时重启,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!
于是我上网找了一些教程编写了一个简单的每天定时启动 tomcat 的脚本,特此记录一下
我的环境是 centos 7
在某个目录新建一个 .sh 脚本文件
vim tomcatStart.sh
在 tomcatStart.sh 文件里面写入一下代码
#!/bin/bash/etc/profiletomcatPath="/usr/local/tomcat9"binPath="$tomcatPath/bin"echo "[info][$(date)]正在监控tomcat,路径:$tomcatPath"pid=`ps -ef | grep tomcat | grep -w $tomcatPath | grep -v 'grep' | awk '{print $2}'`if [-n "pid"]; thenecho "[info][$(date)]tomcat进程为:$pid"echo "[info][$(date)]tomcat已经启动,准备使用shutdown命令关闭"$binPath"/shutdown.sh"sleep 2pid=`ps -ef | grep tomcat | grep -w $tomcatPath | grep -v 'grep' | awk '{print $2}'`if [-n "$pid"]; thenecho "[info][$(date)]使用shutdown关闭失败,准备kill进程"kill -9 $pidecho "[info][$(date)]kill进程完毕"sleep 1elseecho "[info][$(date)]使用shutdown关闭成功"fielseecho "[info][$(date)]tomcat未启动"fiecho "[info][$(date)]准备启动tomcat"$binPath"/startup.sh"
修改 tomcatStart.sh 的权限
sudo chmod 777 tomcatStart.sh
添加脚本到 crontab 定时任务
crontab -e// 第一个是 tomcatStart.sh 的路径, 第二个是将日志输出到某个文件中00 03 * * * /usr/local/tomcat9/bin/tomcatStart.sh >> /home/zhang/tomcatLog.txt
重启一下 crontab 以生效
systemctl restart crond
除了这种手动重启的方法,还有优化 tomcat 的方法,这个等有时间再去探索了
以上是“如何编写shell脚本实现tomcat定时重启”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注编程网行业资讯频道!