国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術文章
文章詳情頁

python 檢測nginx服務郵件報警的腳本

瀏覽:5日期:2022-06-30 17:23:19

$ cat checkserver.py#!/usr/bin/python# -*- coding: utf-8 -*- import osimport socketimport smtplibfrom email.mime.text import MIMETextfrom email.header import Header mail_host = 'smtp.exmail.qq.com'mail_user = 'yunwei-monitor@111.com'mail_pass = 'yNE8dcsx' sender = ’yunwei-monitor@111.com’receivers = [’lixinliang@111.com’] def Checkserverdown(): #三個參數:第一個為文本內容,第二個 plain 設置文本格式,第三個 utf-8 設置編碼 message = MIMEText(’192.168.71.200 nginx is down’,’plain’,’utf-8’) message[’From’] = Header('Nginx is down ', ’utf-8’) # 發送者 message[’To’] = Header('李鑫亮', ’utf-8’) # 接收者 subject = ’192.168.71.200 nginx is down’ message[’Subject’] = Header(subject,’utf-8’) try:smtpobj = smtplib.SMTP()smtpobj.connect(mail_host,25)smtpobj.login(mail_user,mail_pass)smtpobj.sendmail(sender,receivers,message.as_string())print('郵件發送成功') except smtplib.SMTPException:print('Error: 無法發送郵件') def Checkserverstilldown(): #三個參數:第一個為文本內容,第二個 plain 設置文本格式,第三個 utf-8 設置編碼 message = MIMEText(’192.168.71.200 nginx is still down’,’plain’,’utf-8’) message[’From’] = Header('Nginx is still down ', ’utf-8’) # 發送者 message[’To’] = Header('李鑫亮', ’utf-8’) # 接收者 subject = ’192.168.71.200 nginx is still down’ message[’Subject’] = Header(subject,’utf-8’) try:smtpobj = smtplib.SMTP()smtpobj.connect(mail_host,25)smtpobj.login(mail_user,mail_pass)smtpobj.sendmail(sender,receivers,message.as_string())print('郵件發送成功') except smtplib.SMTPException:print('Error: 無法發送郵件') def Checkserverup(): #三個參數:第一個為文本內容,第二個 plain 設置文本格式,第三個 utf-8 設置編碼 message = MIMEText(’192.168.71.200 nginx is up’,’plain’,’utf-8’) message[’From’] = Header('Nginx is up ', ’utf-8’) # 發送者 message[’To’] = Header('李鑫亮', ’utf-8’) # 接收者 subject = ’192.168.71.200 nginx is up’ message[’Subject’] = Header(subject,’utf-8’) try:smtpobj = smtplib.SMTP()smtpobj.connect(mail_host,25)smtpobj.login(mail_user,mail_pass)smtpobj.sendmail(sender,receivers,message.as_string())print('郵件發送成功') except smtplib.SMTPException:print('Error: 無法發送郵件') # 判斷 nginx 進程輸出內容來確定是否要進行進程啟動file = '/tmp/nginx.txt'os.system('''ps -ef |grep nginx |grep -Ev 'grep|vim' > %s''' % file) print (os.path.getsize(file))if os.path.getsize(file) == 0:Checkserverdown()os.system('/usr/sbin/nginx')print (os.path.getsize(file))os.system('''ps -ef |grep nginx |grep -Ev 'grep|vim' > %s''' % file)if os.path.getsize(file) == 0:Checkserverstilldown()os.system('/usr/sbin/nginx')else:Checkserverup()

以上就是python 檢測nginx服務郵件報警的腳本的詳細內容,更多關于python 檢測nginx服務郵件報警的資料請關注好吧啦網其它相關文章!

標簽: Python 編程
相關文章:
主站蜘蛛池模板: 泰兴市| 县级市| 武定县| 会昌县| 平潭县| 读书| 宜昌市| 攀枝花市| 准格尔旗| 许昌市| 新郑市| 资溪县| 沙坪坝区| 泰和县| 桓台县| 隆回县| 宁蒗| 赣州市| 合阳县| 新巴尔虎右旗| 遵化市| 济宁市| 西乌| 平度市| 阿瓦提县| 芜湖市| 囊谦县| 思茅市| 武清区| 酉阳| 大港区| 黔西县| 贡山| 宁乡县| 涡阳县| 东乌| 灵川县| 张家港市| 汶川县| 台中市| 弋阳县|