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

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

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

瀏覽:2日期: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 編程
相關文章:
主站蜘蛛池模板: 屏边| 嘉荫县| 探索| 华容县| 平武县| 东乡族自治县| 沈阳市| 定西市| 资阳市| 武定县| 思南县| 汕尾市| 蕲春县| 托里县| 当阳市| 靖远县| 始兴县| 长泰县| 万山特区| 绥棱县| 关岭| 江陵县| 仙桃市| 民乐县| 天水市| 罗平县| 开远市| 咸宁市| 土默特右旗| 顺义区| 绩溪县| 青河县| 保山市| 婺源县| 宜章县| 邮箱| 华蓥市| 密山市| 本溪| 慈溪市| 荆州市|