码迷,mamicode.com
首页 > Web开发 > 详细

网站502自动重启服务

时间:2015-09-08 12:29:53      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

MY_URL="http://www.youwebsite.com/"
RESULT=`curl -I $MY_URL|grep "HTTP/1.1 502"`
if [ -n "$RESULT" ]; then
/etc/init.d/mysql restart
/etc/init.d/php5-fpm restart
/etc/init.d/nginx restart
fi

curl -I 网址后会包含以下信息

HTTP/1.1 200 OK
Server: nginx/1.1.19
Date: Tue, 08 Sep 2015 03:35:24 GMT
Content-Type: text/html; charset=UTF-8
Connection: keep-alive

只要grep是否存在HTTP/1.1 (错误码)

就可以在不同返回状态时执行对应操作

网站502自动重启服务

标签:

原文地址:http://www.cnblogs.com/you-jia/p/4791129.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!