linux系統資源負載過高自動重啟apache的shell指令碼

來源:互聯網
上載者:User
linux系統資源負載過高自動重啟apache的shell指令碼

 

在我們日常維護linux下apache的web伺服器的時候,由於爬蟲爬取造成死迴圈無法跳出或者因為同行資料的採集等原因給伺服器負載帶來巨大額外的開銷,嚴重的會使apache嚴重超負載二關閉從而導致網站無法對外提供服務,給企業造成無法挽回的損失。在網上找到相關自動重啟apache的預警機制shell指令碼,現在分享出來可以協助的更多的管理員。在這雷根據自己的實際情況進行改動。適合所有可以通過service httpd start | stop 或者源碼安裝的web來重啟apache的vps或伺服器。最後需要在crontab設定每隔幾分鐘執行一次即可。 

[root@club root]# cat /admin_tools/loadavg_restart_apache.sh
#!/bin/sh

# crontab usage: */3 * * * * /admin_tools/loadavg_restart_apache.sh >> /admin_tools/restart_apache.log

TOP_SYS_LOAD_NUM=3
SYS_LOAD_NUM=`uptime | awk '{print $(NF-2)}' | sed 's/,//'` 
 
echo $(date +"%y-%m-%d") `uptime` 
if [ `echo "$TOP_SYS_LOAD_NUM < $SYS_LOAD_NUM"|bc` -eq 1 ] 
then 
    echo "#0#" $(date +"%y-%m-%d %H:%M:%S") "pkill httpd" `ps -ef | grep httpd | wc -l`
    /home/server/apache/bin/apachectl stop
    sleep 8
    pkill httpd 
    sleep 8 
    for i in 1 2 3 
    do 
        if [ `pgrep httpd | wc -l` -le 0 ] 
        then 
            /home/server/apache/bin/apachectl start
            sleep 30 
            echo "#1#" $(date +"%y-%m-%d %H:%M:%S") "start httpd" `ps -ef | grep httpd | wc -l` 
        fi 
    done 
else 
    if [ `pgrep httpd | wc -l` -le 0 ] 
    then 
        /home/server/apache/bin/apachectl start
        sleep 30 
        echo "#2#" $(date +"%y-%m-%d %H:%M:%S") "start httpd" `ps -ef | grep httpd | wc -l` 
    fi 
fi

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.