发布时间:April 15, 2012 // 分类:Nginx,Shell // 1 Comment
此脚本用Curl监控Nginx网站状态,如回应502信息即重启LNMP。
#!/bin/bash website=https://www.haiyun.me #修改为您的网址 if curl -I $website|grep "HTTP/1.1 502"; then /root/lnmp restart fi
添加到crontab计划任务:
crontab -e */5 * * * * sh /path/lnmp-502.sh #5分钟执行一次