系統監控:用 shell 監控 FTP 服務,並利用飛信發手機簡訊警示

來源:互聯網
上載者:User
#!/bin/shLANG=zh_cnsendmsgfile=/home/lsc/fetion/install/cmd.txtsend_sms_mobile_telephone(){    log_time=`cat ftpstat_time`    local_time=`date +%s`    n=$(( ${local_time}-${log_time} ))    if [ "$n" -gt "1800" ]; then        # 距離上次發送警示簡訊已經超過30分鐘,可以再次發送。        echo $local_time > ftpstat_time        echo "sms 0 ${msg}" > $sendmsgfile        echo "exit" >> $sendmsgfile        /home/lsc/fetion/install/fetion -u 手機號碼 -p 飛信密碼 -EN -b $sendmsgfile    else        echo "距離上次發送警示簡訊還沒有超過30分鐘。"    fi}if wget -t 3 -T 3 --spider ftp://test:test的密碼@127.0.0.1/ftpstat > /dev/null 2>&1 ; then    echo "FTP正常"else    /usr/local/sbin/pure-config.pl /usr/local/etc/pure-ftpd.conf    sleep 10 #延遲10秒    if wget -t 3 -T 3 --spider ftp://test:test的密碼@127.0.0.1/ftpstat > /dev/null 2>&1 ; then        msg="伺服器 IP地址 警報:FTP伺服器無法登陸,已經成功啟動。(監控使用測試連接帳號為test)。"        send_sms_mobile_telephone    else        msg="伺服器 IP地址 警報:FTP伺服器無法登陸,嘗試啟動失敗。(監控使用測試連接帳號為test)。"        send_sms_mobile_telephone    fifi
相關文章

聯繫我們

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