使用Windows的wmic命令,獲取可執(zhí)行文件的運(yùn)行狀況、文件路徑、PID,如果可執(zhí)行文件掛掉,就重啟并郵件告警。
因?yàn)楸O(jiān)控的可執(zhí)行文件的文件名一樣,不好區(qū)分,所以我使用文件的絕對路徑為標(biāo)準(zhǔn)來判斷是否正常運(yùn)行,代碼及詳細(xì)解釋如下:
# -*- coding: utf-8 -*-
import os
import win32api
import smtplib
from email.mime.text import MIMEText
def get_pidWay(file_name):
ept_list = []
temp_list = []
pid_way = os.popen("wmic process where name='" + file_name + "' get processid,executablepath,name").readlines()
for j in pid_way:
temp_list.append(j.split())
while ept_list in temp_list:
temp_list.remove(ept_list)
return(temp_list)
def open_file(filePath):
win32api.ShellExecute(0, 'open', filePath, '','',1)
def mailsend (mailtext,mailsubject):
mailserver = "smtp.qq.com"
username_send = '發(fā)送的郵箱地址'
password = '密碼'
username_recv = '接收的郵箱地址'
mail = MIMEText(mailtext)
mail['Subject'] = mailsubject
mail['From'] = username_send
mail['To'] = username_recv
smtp = smtplib.SMTP_SSL(mailserver)
smtp.login(username_send,password)
smtp.sendmail(username_send,username_recv,mail.as_string())
smtp.quit()
print ('success')
file_path = "可執(zhí)行文件的絕對路徑"
fileName = '可執(zhí)行文件名'
mailtext = '報(bào)警郵件內(nèi)容'
mailsubject = '報(bào)警郵件標(biāo)題'
exe_info = get_pidWay(fileName)
pos = 0
for i in range(len(exe_info)):
if file_path in exe_info[i][0]:
pos = 1
else:
pass
if pos == 1:
pass
else:
open_file(r"可執(zhí)行文件名")
mailsend(mailtext,mailsubject)
1.get_pidWay函數(shù):
輸入file_name,返回文件路徑、文件名、文件Pid的列表,用split函數(shù)和ept_list字符串使返回的列表變成[[文件路徑,文件名,Pid],[文件路徑,文件名,Pid]]這樣的二維數(shù)組;
2.open_file函數(shù):
使用win32api模塊,類似在cmd中執(zhí)行程序,打開指定的可執(zhí)行文件;
3.mailsend函數(shù):
發(fā)送郵件,我用的qq的smtp模塊,在qq郵箱的設(shè)置里可以開啟smtp端口;
username_send發(fā)送郵件的郵箱地址,password是開啟smtp端口時彈出的字符串;
username_recv收郵件的郵箱地址;
在內(nèi)網(wǎng)要采用smtplib.SMTP_SSL(mailserver)連接(其中mailserver= ‘smtp.qq.com'),使用smtp = smtplib.SMTP(mailserver,port=465)方式會報(bào)錯:smtplib.SMTPServerDisconnected: Connection unexpectedly closed
4.主函數(shù):
file_path :放置可執(zhí)行文件的目錄;
fileName:可執(zhí)行文件的文件名;
for循環(huán)來判斷file_path是否在我們 get_pidWay函數(shù)返回的列表中,從而知道可執(zhí)行文件是否正常運(yùn)行;
如果沒有運(yùn)行,pos = 0,則運(yùn)行文件、發(fā)送郵件。
以上就是python使用Windows的wmic命令監(jiān)控文件運(yùn)行狀況,如有異常發(fā)送郵件報(bào)警的詳細(xì)內(nèi)容,更多關(guān)于python wmic命令監(jiān)控文件運(yùn)行狀況的資料請關(guān)注腳本之家其它相關(guān)文章!
您可能感興趣的文章:- python實(shí)現(xiàn)自動化辦公郵件合并功能
- Python利用機(jī)器學(xué)習(xí)算法實(shí)現(xiàn)垃圾郵件的識別
- Python 發(fā)送SMTP郵件的簡單教程
- Python一行代碼實(shí)現(xiàn)自動發(fā)郵件功能
- Python基礎(chǔ)詳解之郵件處理
- Python 調(diào)用API發(fā)送郵件
- Python基于SMTP發(fā)送郵件的方法
- python基于SMTP發(fā)送QQ郵件
- python 自動監(jiān)控最新郵件并讀取的操作
- python實(shí)現(xiàn)發(fā)送郵件
- python 實(shí)現(xiàn)網(wǎng)易郵箱郵件閱讀和刪除的輔助小腳本
- python如何發(fā)送帶有附件、正文為HTML的郵件
- 用python監(jiān)控服務(wù)器的cpu,磁盤空間,內(nèi)存,超過郵件報(bào)警
- python郵件中附加文字、html、圖片、附件實(shí)現(xiàn)方法
- Python用20行代碼實(shí)現(xiàn)完整郵件功能