• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    一个监控Squid运行进程数并自动重启的简洁Shell脚本分享

    复制代码 代码如下:

    #!/bin/sh

    while sleep 30

    do

    SquidNum=`ps -ef|grep squid|grep -v grep|wc -l`

    #HttpNum=`netstat -an|grep 0.0.0.0:80|grep -v grep|wc -l` #80状态

    if [ $SquidNum != 3 ] ; then

    /etc/rc3.duid start

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

    echo "$adddate squid started!" >> /home/resquid.log

    fi

    #超过5000个http请求就重启squid服务

    HttpNum=`netstat -an|grep 80|grep -v grep|wc -l`

    if [ $HttpNum -gt 5000 ] ; then

    /etc/rc3.duid restart

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

    echo "$adddate http out 5000 squid started!" >> /home/resquid.log

    fi

    done


    您可能感兴趣的文章:
    • shell脚本实现监控shell脚本的执行流程及变量的值
    • Shell脚本实现Linux系统和进程资源监控
    • Shell脚本实现监控MySQL主从同步
    • Shell脚本实现监控iptables运行状态
    • Shell脚本实现监控rsync数据是否传输完
    • Shell脚本实现监控kingate并自动启动
    • Shell脚本实现监控iptables规则是否被修改
    • Shell脚本实现memcache缓存命中率监控
    • Shell脚本编写Nagios插件监控程序资源占用
    • Linux服务器硬件运行状态及故障邮件提醒的监控脚本分享
    上一篇:CentOS中使用Shell脚本实现每天自动备份网站文件和数据库并上传到FTP中
    下一篇:CentOS下对shell脚本加密的二种方法
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    一个监控Squid运行进程数并自动重启的简洁Shell脚本分享 一个,监控,Squid,运行,进程,