编写脚本
tomcatMonitor.sh
文章来源:https://www.toymoban.com/news/detail-646897.html
#!/bin/sh
. /etc/profile
. ~/.bash_profile
#首先用ps -ef | grep tomcat 获得了tomcat进程信息,这样出来的结果中会包含grep本身,
#因此通过 | grep -v grep 来排除grep本身,然后通过 awk '{print $2}'来打印出要找的进程id号;
pid=$(ps -ef|grep apache-tomcat-8.5.47 |grep -v grep | awk '{print $2}')
#echo $pid
if [ -n "$pid" ];then
echo "tomcat进程ID为:$pid. 运行正常"
else
echo "进程不存在! Tomcat自动重启"
cd /usr/local/apache-tomcat-8.5.47/bin/ && ./startup.sh
fi
为脚本添加可执行权限
chmod u+x tomcatMonitor.sh
配置定时任务
*/30 * * * * /usr/local/tomcatMonitor.sh
重启定时任务:systemctl start crond
文章来源地址https://www.toymoban.com/news/detail-646897.html
到了这里,关于centos 定时脚本检测tomcat是否启动,未启动情况下重新启动的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!