python停止执行的代码(python定时检测无响应进程并重启的实例代码)
类别:脚本大全 浏览量:2569
时间:2021-10-18 11:16:14 python停止执行的代码
python定时检测无响应进程并重启的实例代码总有一些程序在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/
您可能感兴趣
- 简述python2与python3的不同点(Python2与Python3的区别实例分析)
- python mysql配置(详解python校验SQL脚本命名规则)
- pythongui实战案例(Python GUI编程完整示例)
- python自学编程笔记(Python 编程速成推荐)
- 推荐算法第三方python(GitHub 热门:Python 算法大全,Star 超过 2 万)
- python爬微信好友(python抓取需要扫微信登陆页面)
- python的静态方法和类方法(深入解析python中的实例方法、类方法和静态方法)
- python3列表的使用教程(对Python3 pyc 文件的使用详解)
- python 多进程的启动和停止(Python3.5多进程原理与用法实例分析)
- python微信窗口内容获取(python使用wxpy轻松实现微信防撤回的方法)
- python解析视频源码(基于python实现高速视频传输程序)
- python直接查询mongodb(pymongo中聚合查询的使用方法)
- python搭建django框架(详解Python网络框架Django和Scrapy安装指南)
- python数据分析pandas教程(11个Python Pandas小技巧让你的工作更高效附代码实例)
- python使用telnet(python 处理telnet返回的More,以及get想要的那个参数方法)
- 用mysql语句写python学生管理系统(Python基于mysql实现学生管理系统)
- 巴厘岛旅游攻略(巴厘岛旅游攻略7天多少钱)
- 文莱旅游攻略(文莱旅游攻略介绍)
- 马来西亚旅游攻略(马来西亚旅游攻略自由行攻略)
- 缅甸旅游攻略(缅甸旅游攻略必去景点推荐)
- 《庆余年2》新消息,原班人马,肖战特别出演,这才是最好的安排(庆余年2新消息原班人马)
- 宁夏灵武恐龙化石发现始末(宁夏灵武恐龙化石发现始末)
热门推荐
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9