daemon.sh
525 Bytes
#!/bin/bash
phpscriptDir=/Data/PE/yoholive
phpcmd=/Data/local/php-5.5.30/bin/php
phpscriptlog=/Data/logs/php/phpscript/
stillRunning=$(ps -ef |grep "room/stat" |grep -v "grep")
if [ -z "$stillRunning" ] ; then
nohup $phpcmd $phpscriptDir/yii room/stat >> $phpscriptlog/yoholive_room_stat.log 2>&1 &
fi
stillRunning=$(ps -ef |grep "video/replaynum" |grep -v "grep")
if [ -z "$stillRunning" ] ; then
nohup $phpcmd $phpscriptDir/yii video/replaynum >> $phpscriptlog/yoholive_video_replaynum.log 2>&1 &
fi
sleep 5