Linux Nginx服务守护监控
来源:岁月联盟
时间:2012-02-01
当然,在给出脚本之前,先做几个假设,nginx的目录是/usr/local/nginx/,其pid conf 分别为在相应默认目录之下。实例脚本如下:
#! /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之类的
crontab的详细用法,可以参阅以前的blog:crontab命令小结
摘自 心灵净土