由于线上服务不知道在什么时候会挂掉,所以写了一个监控tomcat进程的脚本。如果该进程不存在时,去启动该tomcat进程。


#!/bin/bash

source /etc/profile   

source ~/.bash_profile

# source /etc/profile ~/.bash_profile 这两句一定要加上,特别是在监控一些java进程的时候。

pid=`ps -ef | grep app1 | grep -v "grep" |sed -n 1p | awk '{print $2}'`

if [ "$pid" == "" ]; then

sh /opt/tomcat/app1/bin/startup.sh

echo "拉起tomcat app1进程" >> /root/test.log

fi


然后在编辑/etc/crontab 加入以上的脚本文件。