python定时检测无响应进程并重启的实例代码
作者:零壹视界 时间:2023-11-29 11:00:39
总有一些程序在windows平台表现不稳定,动不动一段时间就无响应,但又不得不用,每次都是发现问题了手动重启,现在写个脚本定时检测进程是否正常,自动重启。
涉及知识点
schedule定时任务调度
os.popen运行程序并读取解析运行结果
代码分解
脚本主入口
if __name__ == '__main__':
#每5秒执行检查任务
schedule.every(5).seconds.do(check_job)
#此处固定写法,意思是每秒钟schedule看下是否有pending的任务,有就执行
while True:
schedule.run_pending()
time.sleep(1)
schedule的其它示例
import schedule
import time
def 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_list
tasklist示例输出
映像名称 PID 会话名 会话# 内存使用
========================= ======== ================ =========== ============
WizChromeProcess.exe 1620 Console 1 32,572 K
完整代码
import os
import time
import schedule
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_list
def 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定时检测无响应进程并重启的实例代码 ,网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!
来源:http://www.xetlab.com/2019/04/21/
标签:python,检测,进程,重启
0
投稿
猜你喜欢
使用Django和Postgres进行全文搜索的实例代码
2022-07-06 10:52:15
认识那些被忽略的SQL Server注入技巧
2009-01-20 13:15:00
pycharm利用pyspark远程连接spark集群的实现
2023-10-08 06:49:00
python 利用栈和队列模拟递归的过程
2023-12-14 14:08:12
Python爬虫定时计划任务的几种常见方法(推荐)
2021-06-02 02:05:39
python3反转字符串的3种方法(小结)
2022-05-03 22:59:01
python数据结构之二叉树的统计与转换实例
2023-08-11 07:35:48
PHP程序员玩转Linux系列 使用supervisor实现守护进程
2023-10-12 14:50:21
Pycharm配置opencv与numpy的实现
2021-09-19 08:20:55
详解JS ES6变量的解构赋值
2024-04-19 09:51:35
vue路由跳转了但界面不显示的问题及解决
2024-05-29 22:49:45
asp实现在线人数统计代码
2008-08-10 18:35:00
Android应用开发中Action bar编写的入门教程
2022-01-03 02:25:18
制作主页的独门功夫五十招
2010-09-05 21:15:00
mysql oracle和sqlserver分页查询实例解析
2024-01-24 00:30:29
使用python Django做网页
2023-11-22 03:35:26
怎么用FSO生成一个UNICODE格式的文本文件
2009-05-26 15:40:00
Vue Socket.io源码解读
2024-06-05 15:28:35
mysql建立自定义函数的问题
2024-01-19 06:26:52
Opera下的max-width BUG
2010-06-26 12:51:00