python定时检测无响应进程并重启的实例代码


Posted in Python onApril 22, 2019

总有一些程序在windows平台表现不稳定,动不动一段时间就无响应,但又不得不用,每次都是发现问题了手动重启,现在写个脚本定时检测进程是否正常,自动重启。

涉及知识点

  1. schedule定时任务调度
  2. 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定时检测无响应进程并重启的实例代码 ,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对三水点靠木网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!

Python 相关文章推荐
centos 下面安装python2.7 +pip +mysqld
Nov 18 Python
Python脚本实现网卡流量监控
Feb 14 Python
python比较两个列表是否相等的方法
Jul 28 Python
Python实现matplotlib显示中文的方法详解
Feb 06 Python
python 寻找list中最大元素对应的索引方法
Jun 28 Python
Python实现的txt文件去重功能示例
Jul 07 Python
10个Python小技巧你值得拥有
Sep 29 Python
Python测试模块doctest使用解析
Aug 10 Python
浅析PyTorch中nn.Module的使用
Aug 18 Python
TensorFlow实现保存训练模型为pd文件并恢复
Feb 06 Python
Python try except finally资源回收的实现
Jan 25 Python
让文件路径提取变得更简单的Python Path库
May 27 Python
django query模块
Apr 20 #Python
不到20行代码用Python做一个智能聊天机器人
Apr 19 #Python
详解Python3 基本数据类型
Apr 19 #Python
python面向对象法实现图书管理系统
Apr 19 #Python
python远程连接MySQL数据库
Apr 19 #Python
详解Python匿名函数(lambda函数)
Apr 19 #Python
解决python3中的requests解析中文页面出现乱码问题
Apr 19 #Python
You might like
在mysql数据库原有字段后增加新内容
2009/11/26 PHP
PHP连接SQLServer2005方法及代码
2013/12/26 PHP
CMS中PHP判断系统是否已经安装的方法示例
2014/07/26 PHP
使用YUI+Ant 实现JS CSS压缩
2014/09/02 PHP
php压缩和解压缩字符串的方法
2015/03/14 PHP
php去除头尾空格的2种方法
2015/03/16 PHP
PHPExcel实现表格导出功能示例【带有多个工作sheet】
2018/06/13 PHP
PHP后台备份MySQL数据库的源码实例
2019/03/18 PHP
Yii框架小部件(Widgets)用法实例详解
2020/05/15 PHP
MC Dialog js弹出层 完美兼容多浏览器(5.6更新)
2010/05/06 Javascript
nodejs文件操作模块FS(File System)常用函数简明总结
2014/06/05 NodeJs
ztree获取当前选中节点子节点id集合的方法
2015/02/12 Javascript
Angular.js与Bootstrap相结合实现表格分页代码
2016/04/12 Javascript
AngularJS 表达式详解及实例代码
2016/09/14 Javascript
JS日程管理插件FullCalendar中文说明文档
2017/02/06 Javascript
JavaScript和jQuery制作光棒效果
2017/02/24 Javascript
Vue2.0设置全局样式(less/sass和css)
2017/11/18 Javascript
Vue拖拽组件开发实例详解
2018/05/11 Javascript
vue+node 实现视频在线播放的实例代码
2020/10/19 Javascript
python2.7删除文件夹和删除文件代码实例
2013/12/18 Python
Python的Django框架中的表单处理示例
2015/07/17 Python
Python中list列表的一些进阶使用方法介绍
2015/08/15 Python
Python简单实现安全开关文件的两种方式
2016/09/19 Python
python 读取txt中每行数据,并且保存到excel中的实例
2018/04/29 Python
python GUI库图形界面开发之PyQt5 MDI(多文档窗口)QMidArea详细使用方法与实例
2020/03/05 Python
python中id函数运行方式
2020/07/03 Python
Python filter()及reduce()函数使用方法解析
2020/09/05 Python
史上最详细的Python打包成exe文件教程
2021/01/17 Python
使用CSS3编写灰阶滤镜来制作黑白照片效果的方法
2016/05/09 HTML / CSS
函授本科自我鉴定
2013/11/03 职场文书
庆元旦迎新年广播稿
2014/02/18 职场文书
2014年民主评议党员个人总结
2014/09/24 职场文书
六查六看自查报告
2014/10/14 职场文书
党员专题组织生活会发言材料
2014/10/17 职场文书
未来,这5大方向都很适合创业
2019/07/22 职场文书
Springboot集成阿里云OSS上传文件系统教程
2021/06/28 Java/Android