python練習題(四)

來源:互聯網
上載者:User

標籤:warning   python   練習題   import   檢測   

寫一個指令碼,判斷原生80連接埠是否開啟著,如果開啟著什麼都不做,如果發現連接埠不存在,那麼重啟一下httpd服務,並發郵件通知你自己。指令碼寫好後,可以每一分鐘執行一次,也可以寫一個死迴圈的指令碼,30s檢測一次。


#!/usr/bin/env python

#!coding=utf-8

import os

import time

import sys

import smtplib

from email.mime.text import MIMEText

from email.MIMEMultipart import MIMEMultipart


def sendsimplemail (warning):

    msg = MIMEText(warning)

    msg[‘Subject‘] = ‘python first mail‘

    msg[‘From‘] = ‘[email protected]‘

    try:

        smtp = smtplib.SMTP()

        smtp.connect(r‘smtp.126.com‘)

        smtp.login(‘[email protected]‘, ‘13716370012‘)

        smtp.sendmail(‘[email protected]‘, [‘[email protected]‘], msg.as_string())

        smtp.close()

    except Exception, e:

        print e


while True:

    http_status = os.popen(‘netstat -tulnp | grep httpd‘,‘r‘).readlines()

    try:

        if http_status == []:

            os.system(‘service httpd start‘)

            new_http_status = os.popen(‘netstat -tulnp | grep httpd‘,‘r‘).readlines()

            str1 = ‘‘.join(new_http_status)

            is_80 = str1.split()[3].split(‘:‘)[-1]

            if is_80 != ‘80‘:

                print ‘httpd 啟動失敗‘

            else:

                print ‘httpd 啟動成功‘

                sendsimplemail(warning = "This is a warning!!!")

        else:

            print ‘httpd正常‘

        time.sleep(5)

    except KeyboardInterrupt:

        sys.exit(‘\n‘) 



python練習題(四)

相關文章

聯繫我們

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