这篇文章主要介绍了Python检查 云备份进程是否正常运行代码实例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
场景:服务器自动备份数据库文件,每两小时生成一个新备份文件,通过云备份客户端自动上传,需要每天检查是否备份成功。
实现:本脚本实现检查文件是否备份成功,进程是否正常运行,并且发送相关邮件提醒。
#! /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配置文件内容
[os] path=D:\test [email] server=smtp.office365.com sender=xxxx@outlook.com pwd=xxxxx receiver=xx@outlook.com,xxxxx@gmail.com
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
华山资源网 Design By www.eoogi.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
华山资源网 Design By www.eoogi.com
暂无评论...
更新日志
2024年11月15日
2024年11月15日
- 黄乙玲1988-无稳定的爱心肝乱糟糟[日本东芝1M版][WAV+CUE]
- 群星《我们的歌第六季 第3期》[320K/MP3][70.68MB]
- 群星《我们的歌第六季 第3期》[FLAC/分轨][369.48MB]
- 群星《燃!沙排少女 影视原声带》[320K/MP3][175.61MB]
- 乱斗海盗瞎6胜卡组推荐一览 深暗领域乱斗海盗瞎卡组分享
- 炉石传说乱斗6胜卡组分享一览 深暗领域乱斗6胜卡组代码推荐
- 炉石传说乱斗本周卡组合集 乱斗模式卡组最新推荐
- 佟妍.2015-七窍玲珑心【万马旦】【WAV+CUE】
- 叶振棠陈晓慧.1986-龙的心·俘虏你(2006复黑限量版)【永恒】【WAV+CUE】
- 陈慧琳.1998-爱我不爱(国)【福茂】【WAV+CUE】
- 咪咕快游豪礼放送,百元京东卡、海量欢乐豆就在咪咕咪粉节!
- 双11百吋大屏焕新“热”,海信AI画质电视成最大赢家
- 海信电视E8N Ultra:真正的百吋,不止是大!
- 曾庆瑜1990-曾庆瑜历年精选[派森][WAV+CUE]
- 叶玉卿1999-深情之选[飞图][WAV+CUE]