首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 系统运维 >

监控服务是不是存在,如果不存在就创建

2013-01-21 
监控服务是否存在,如果不存在就创建#!/bin/shkill_result`ps aux | grep index.php | grep -v grep | w

监控服务是否存在,如果不存在就创建

#!/bin/sh
kill_result=`ps aux | grep 'index.php' | grep -v grep | wc -l`
if [ $kill_result -eq 0 ] ; then
  nohup /usr/local/php/bin/php  /var/www/q5.youxigu.com/pay/index.php &
fi


kill_result=`ps aux | grep 'autosn_processing.php' | grep -v grep | wc -l`
if [ $kill_result -eq 0 ] ; then
  nohup /usr/local/php/bin/php  /var/www/q5.youxigu.com/getsn/autosn_processing.php &
fi

~               

热点排行