linux進程監控shell指令碼代碼_linux shell

來源:互聯網
上載者:User

為確保php頁面在後台運行,寫了一個監控指令碼,假設程式異常退出,那麼可以自動重啟。

shell指令碼/usr/local/scripts/receve.sh內容:

#!/bin/bash#funtion:keep receve.php runningPHP="/usr/local/php5/bin/php"PROGRAM="receve.php"#start dameo$PHP /home/httpd/$PROGRAM >>/usr/local/scripts/phpshell/receve.out &chpid="$!";echo "$chpid" > /usr/local/scripts/phpshell/receve.sidecho "child pid is $chpid"echo "status is $?"while [ 1 ]dowait $chpidexitstatus="$?"echo "child pid=$chpid is gone, $exitstatus" >>/usr/local/scripts/phpshell/receve.php_error.logecho `date` >> /usr/local/scripts/phpshell/receve.php_error.logecho "**************************" >>/usr/local/scripts/phpshell/receve.php_error.logsleep 10$PHP /home/httpd/$PROGRAM >> /usr/local/scripts/phpshell/receve.out &chpid="$!";echo "$chpid" > /usr/local/scripts/phpshell/receve.sidecho "next child pid is $chpid"echo "next status is $?"done

需要保證監控指令碼正常運行,在每天淩晨自動重啟指令碼/usr/local/scripts/restart_r.sh,寫入crontab:

#!/bin/bashecho "" >/tmp/receve_pid.txt/bin/ps ax | /bin/grep "receve.sh" | /bin/grep -v "grep" | /bin/awk '{print $1}' >/tmp/receve_pid.txtno1pid=`cat /tmp/receve_pid.txt | sort -r`no2pid=`cat /usr/local/scripts/phpshell/receve.sid | sort -r`if [ -z $no1pid ];then  echo "receve.sh pid is null, receve.sh is not running." else    /bin/kill -9 "$no1pid"    echo "receve.sh killed"fisleep 3if [ -z $no2pid ];then  echo "receve.php pid is null, receve.php is not running." else  /bin/kill -9 "$no2pid"  echo "receve.php killed"firm -rf /usr/local/scripts/phpshell/receve.sid sleep 3 /usr/local/scripts/receve.sh > /dev/null &

crontab:

複製代碼 代碼如下:

#restart receve.sh
10 00 * * * /usr/local/scripts/restart_r.sh

注意:指令碼命名要避免重複,避免自己kill掉自己的進程。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.