检测httpd状态

url=" http://www.513fdw.com"
   server_status_code=`curl -o /dev/null -s -m 10 --connect-timeout 10 -w %{http_code} "$url"`
   if [ "$server_status_code" = "200" ]
     then
        echo "is 200"
        #echo "`date '+%Y-%m-%d %H:%M:%S'` visit $website status code 200 OK" >>$web_stat_log
   else 
         echo "non't 200"
        #echo "`date '+%Y-%m-%d %H:%M:%S'` visit $website error!!! server can't connect at 10s or stop 
   fi

你可能感兴趣的:(检测httpd状态)