新聞中心
這篇文章將為大家詳細(xì)講解有關(guān)Python中如何檢查云備份進(jìn)程是否正常運(yùn)行,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

場景:服務(wù)器自動(dòng)備份數(shù)據(jù)庫文件,每兩小時(shí)生成一個(gè)新備份文件,通過云備份客戶端自動(dòng)上傳,需要每天檢查是否備份成功。
實(shí)現(xiàn):本腳本實(shí)現(xiàn)檢查文件是否備份成功,進(jìn)程是否正常運(yùn)行,并且發(fā)送相關(guān)郵件提醒。
#! /usr/bin/env python
import os
import time
import smtplib
from email.mime.text import MIMEText
from email.header import Header
from configparser import ConfigParser
def SendMail(server,sender,pwd,receiver,msg):
'''
Conncet to Office365 mail server and sent emails
'''
email = smtplib.SMTP(server,587)
email.starttls()
email.ehlo(server)
email.login(sender,pwd)
email.sendmail(sender,receiver,msg)
email.quit()
def GetNewFiles(path,num):
'''
Get file lists and return the last num created files
'''
lists = os.listdir(path)
lists.sort(key=lambda fn:os.path.getctime(path+'\\'+fn))
return lists[-num : ]
def CheckProcess(name):
'''
Check if the process exits and return result.
['\n', 'Image Name PID Session Name Session# Mem Usage\n', '========================= ======== ================ =========== ============\n', 'Dropbox.exe 20484 Console 1 71,652 K\n', 'Dropbox.exe 23232 Console 1 2,456 K\n', 'Dropbox.exe 61120 Console 1 2,168 K\n']
'''
proc = []
p = os.popen('tasklist /FI "IMAGENAME eq %s"' % name)
for x in p:
proc.append(x)
p.close()
return proc
def MailContent(path,num):
'''
make the mail contents
'''
content = []
dropbox = CheckProcess('dropbox.exe')
carboniteservice = CheckProcess('carboniteservice.exe')
#IF process doesn't run
if len(dropbox) < 2 or len(carboniteservice) < 2 :
content.append("Dropbox or CarBonite doesn't run")
s = '\n\t'.join(dropbox) + '\n\n' + '\n\t'.join(carboniteservice)
content.append("Process Check Result:\n\t" + s)
return content
#Check if the backup files are correct.
files = GetNewFiles(path,num)
file_ctime = os.path.getctime(path + '\\' + files[0])
now = time.time() - 86400
if file_ctime > now :
content.append("DB Backup Successfull")
body = "\nThe Backup files are:\n\t" + '\n\t'.join(files)
content.append(body)
return content
else :
content.append("DB Backup Failed")
body = "\nThe last backup sucessfull file is " + files[-1]
content.append(body)
return content
def main():
#server = 'smtp.office365.com'
#sender = 'online@netbraintech.com'
#receiver = ['gavin.yuan@netbraintech.com' , 'feng.liu@netbraintech.com']
#pwd = 'Netbrain12'
config = ConfigParser()
config.read_file(open('config.ini'))
path = config.get('os', 'path')
receiver = config.get('email', 'receiver')
server = config.get('email', 'server')
sender = config.get('email', 'sender')
pwd = config.get('email', 'pwd')
content = MailContent(path,12)
#content = MailContent("D:\\test",6)
mail_content = content[1]
msg = MIMEText(mail_content, "plain", "utf-8")
msg["Subject"] = Header(content[0], "utf-8")
msg["From"] = sender
msg["To"] = Header(receiver)
SendMail(server,sender,pwd,receiver.split(','),msg.as_string())
if __name__ == '__main__':
main()ini配置文件內(nèi)容
[os] path=D:\test [email] server=smtp.office365.com sender=xxxx@outlook.com pwd=xxxxx receiver=xx@outlook.com,xxxxx@gmail.com
關(guān)于“Python中如何檢查云備份進(jìn)程是否正常運(yùn)行”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請把它分享出去讓更多的人看到。
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。
網(wǎng)站題目:Python中如何檢查云備份進(jìn)程是否正常運(yùn)行-創(chuàng)新互聯(lián)
網(wǎng)站地址:http://www.dlmjj.cn/article/codoop.html


咨詢
建站咨詢
