#! /bin/bash
pidFile=/usr/local/nginx/logs/nginx.pid
nginxBin=/usr/local/nginx/sbin/nginx
confFile=/usr/local/nginx/conf/nginx.conf
if [ ! -f $pidFile ]; then
$nginxBin -c $confFile
fi
仅仅有上面的脚本还是不行的,需要加到系统计划任务中。这个时候就需要用到crontab了。这里有个小技巧,crontab 的时间最小是分钟,我们的监控脚本肯定是不可能以分钟为单位的,假如每5秒跑一下脚本,该怎么做呢?假设上面的脚本保存为/root/.bin/webmonitor.sh,用如下方式编辑crontab:
* * * * * sleep 5; /bin/bash /root/.bin/webmonitor.sh > /dev/null
通过上面的操作,该监控脚本基本可以运行了。当然你也可以继续拓展,怎么监控php之类的。
声明: 此文观点不代表本站立场;转载须要保留原文链接;版权疑问请联系我们。