时间:2021-05-22
总有一些程序在windows平台表现不稳定,动不动一段时间就无响应,但又不得不用,每次都是发现问题了手动重启,现在写个脚本定时检测进程是否正常,自动重启。
涉及知识点
代码分解
脚本主入口
if __name__ == '__main__': #每5秒执行检查任务 schedule.every(5).seconds.do(check_job) #此处固定写法,意思是每秒钟schedule看下是否有pending的任务,有就执行 while True: schedule.run_pending() time.sleep(1)schedule的其它示例
import scheduleimport timedef job(message='stuff'): print("I'm working on:", message)#每10分钟schedule.every(10).minutes.do(job)#每小时schedule.every().hour.do(job, message='things')#每天10点30分schedule.every().day.at("10:30").do(job)while True: schedule.run_pending() time.sleep(1)检查无响应进程并重启
def check_job(): process_name = "xx.exe" not_respond_list = list_not_response(process_name) if len(not_respond_list) <= 0: return pid_params = " ".join(["/PID " + pid for pid in not_respond_list]) os.popen("taskkill /F " + pid_params) if len(list_process(process_name)) <= 0: start_program(r'E:\xx\xx.exe')}查找符合条件的进程列表
def list_process(process_name, not_respond=False): cmd = 'tasklist /FI "IMAGENAME eq %s"' if not_respond: cmd = cmd + ' /FI "STATUS eq Not Responding"' output = os.popen(cmd % process_name) return parse_output(output.read())def list_not_response(process_name): return list_process(process_name, True)解析命令执行结果
def parse_output(output): print(output) pid_list = [] lines = output.strip().split("\n") if len(lines) > 2: for line in lines[2:]: pid_list.append(line.split()[1]) return pid_listtasklist示例输出
映像名称 PID 会话名 会话# 内存使用========================= ======== ================ =========== ============WizChromeProcess.exe 1620 Console 1 32,572 K完整代码
import osimport timeimport scheduledef parse_output(output): print(output) pid_list = [] lines = output.strip().split("\n") if len(lines) > 2: for line in lines[2:]: pid_list.append(line.split()[1]) return pid_listdef list_not_response(process_name): return list_process(process_name, True)def list_process(process_name, not_respond=False): cmd = 'tasklist /FI "IMAGENAME eq %s"' if not_respond: cmd = cmd + ' /FI "STATUS eq Not Responding"' output = os.popen(cmd % process_name) return parse_output(output.read())def start_program(program): os.popen(program)def check_job(): process_name = "xx.exe" not_respond_list = list_not_response(process_name) if len(not_respond_list) <= 0: return pid_params = " ".join(["/PID " + pid for pid in not_respond_list]) os.popen("taskkill /F " + pid_params) if len(list_process(process_name)) <= 0: start_program(r'E:\xxx\xx.exe')if __name__ == '__main__': schedule.every(5).seconds.do(check_job) while True: schedule.run_pending() time.sleep(1)总结
以上所述是小编给大家介绍的python定时检测无响应进程并重启的实例代码 ,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
守护进程模式使用python开发后台服务程序的时候,每次修改代码之后都需要重启服务才能生效比较麻烦。看了一下Python开源的Web框架(Django、Flas
推荐阅读:使用python检测主机存活端口及检查存活主机下面给大家分享使用python语言实现获取主机名根据端口杀死进程代码。ip=os.popen("ifco
本文实例讲述了python开启多个子进程并行运行的方法。分享给大家供大家参考。具体如下:这个python代码创建了多个process子进程,创建完成后先star
本文实例讲述了Python实现的重启关机程序的方法,对Python程序设计有一定的参考价值。具体方法如下:实例代码如下:#!/usr/bin/python#co
本文实例讲述了python检测远程服务器tcp端口的方法。分享给大家供大家参考。具体如下:python检测远程服务器tcp端口的代码,这段代码可以用来做服务器监