美文网首页
linux 时时监控apache 自动启动

linux 时时监控apache 自动启动

作者: galenv | 来源:发表于2018-03-08 09:02 被阅读0次

    代码如下:

    新建 run.sh 写入保存

    s= ps -fe |grep "/usr/sbin/httpd"

     ls_date=`date +%Y-%m-%d%H:%M:%S`

     if [ -n $s ]; then

     #service httpd start echo ${ls_date} 'httpd is ok ' >> run.log

     else service httpd start echo ${ls_date} 'httpd is error restart ' >> run.log

     fi

    使用crontab定时执行

    相关文章

      网友评论

          本文标题:linux 时时监控apache 自动启动

          本文链接:https://www.haomeiwen.com/subject/dtuefftx.html