郵件警示shell指令碼

來源:互聯網
上載者:User

標籤:class   blog   tar   art   os   表   

溫馨提示  首先要安裝postfix 或者 sendmail 等郵件伺服器

1.Apache

#!/bin/bash#apache.shnc -w2 localhost 80   if[ $? -ne 0 ]thenecho "apache is down,please check" | mail [email protected] -s "apache is down"/usr/local/apache2/bin/apachectl restartfi

 說明:
    nc 是到一個連接埠裡面去 -w2 表示進去2秒  如果連接埠開放2秒後自動結束  如果沒有開放直接退出
    $? 是上一步執行的結果 0表示執行成功,連接埠是開啟的  非0 表示失敗,連接埠是關閉的
    如果80連接埠關閉了 發送郵件並且重啟服務

2.硬碟配額

#!/bin/bash#disk.shnum=`df |awk ‘NR==3{print int($4)}‘`if [ $num -ge 20]thenecho "disk space is ${num}%, now >20%" | mail [email protected] -s "disk space >22%"fi

 說明:
    num=`df |awk ‘NR==3{print int($4)}‘`  把df執行結果的第3行第4列的值轉成int 賦值給 num

 

相關文章

聯繫我們

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