寻觅生命中的那一片浅草......

用curl检测URL返回状态

#!/bin/bash
#自动检测论坛php是否挂了

while true
do
URL=” http://bbs.example.cn”
RETURN=`curl -o /dev/null -s -w “%{http_code}” “${URL}”`
if [ $RETURN != ‘200’ ];then
/data/sh/fastcgi_restart
fi
sleep 12
done

尚无评论

发表评论

2025年八月
« 5月    
 123
45678910
11121314151617
18192021222324
25262728293031