|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
欢迎大家来到仓酷云论坛!#!/bin/sh
whilesleep30
do
SquidNum=`ps-ef|grepsquid|grep-vgrep|wc-l`
#HttpNum=`netstat-an|grep0.0.0.0:80|grep-vgrep|wc-l`#80形态
if[$SquidNum!=3];then
/etc/rc3.duidstart
adddate=`date+%Y-%m-%d`""`date+%H:%M:%S`
echo"$adddatesquidstarted!">>/home/resquid.log
fi
#凌驾5000个http哀求就重启squid办事
HttpNum=`netstat-an|grep80|grep-vgrep|wc-l`
if[$HttpNum-gt5000];then
/etc/rc3.duidrestart
adddate=`date+%Y-%m-%d`""`date+%H:%M:%S`
echo"$adddatehttpout5000squidstarted!">>/home/resquid.log
fi
done
欢迎大家来到仓酷云论坛! |
|