This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
k18-ntcs-web-ntc/src/main/resources/shouhu/tomcat_shouhu.sh
2017-12-29 16:18:40 +08:00

22 lines
562 B
Bash

#!/bin/sh
log_file=/home/dongxiaooyan/apache-tomcat-7.0.59/logs/tomcat_job.log
echo "/home/dongxiaooyan/apache-tomcat-7.0.59/bin/shouhu.sh Start At:" >> $log_file
date >> $log_file
#count=1
while [ 1 -eq 1 ]
do
sleep 300
if [ `ps -ef | grep apache-tomcat-7.0.59 | grep -v grep | wc -l` -lt 1 ]
then
echo -n "Down at:" >> $log_file
date >> $log_file
# --------- start apache-tomcat-7.0.59
/home/dongxiaooyan/apache-tomcat-7.0.59/bin/startup.sh
echo "/home/dongxiaooyan/apache-tomcat-7.0.59 Start...." >>$log_file
fi
sleep 1
done