监听服务端脚本

#!/bin/bash
day=`date -d “now” +%Y%m%d`
logdir=/home/users/sss/local/nginx/monitor/log/${day}
if [ ! -d $logdir ];then
mkdir -p $logdir
wait
fi;
netstat -tnpl |grep ‘:9999′
single=`echo $?`
if [ -n $single ] && [ $single -eq 1 ];then
now_time=`date -d “now” +%H:%M:%S`
echo ‘['${now_time}']try to restart…’ >> ${logdir}/work.log
/home/users/sss/local/php/bin/php-cgi -b 9999 -c /home/users/sss/local/php/etc/php.ini >> ${logdir}/work.log 2>>$logdir/wf.log 1>/dev/null &
exit
fi

此条目发表在 bash 分类目录。将固定链接加入收藏夹。

发表评论

电子邮件地址不会被公开。 必填项已用 * 标注

*


*

您可以使用这些 HTML 标签和属性: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>