在WEB开发或运维监控的场景中,我们经常需要将一个写好的python脚本运行为后台常驻进程,用以监控或定时执行某任务,此时可借助supervisor对该进程进行监控,一旦进程出错退出,立即对其进行重启。

本实验环境

centos7.2虚拟机一台

pyenv 使用python3.6.2环境

安装supervisor服务(yum install -y supervisor)

python后台常驻进程(测试脚本:/root/test.py)

import time
import logging
logging.basicConfig(
level=logging.DEBUG,
format='%(asctime)s - %(name)s - %(levelname)s:%(message)s',
filename='/root/a.log',
filemode='w',
)

while 1:

logging.info('hello,wolrd.')

time.sleep(3)

运行为后台常驻进程

~]# nohup python test.py >/dev/null 2>&1 &

~]# ps aux | grep test.py

使用supervisor监控此进程

新增/etc/supervisor.d/python_test.ini文件如下:

[program:python_test]

command=/root/.pyenv/shims/python test.py

process_name=%(program_name)s

numprocs=1

directory=/root

umask=022

priority=999

autostart=true

autorestart=true

startsecs=1

startretries=3

user=root

redirect_stderr=true

stdout_logfile_maxbytes=1MB

stdout_logfile_backups=10

stdout_capture_maxbytes=1MB

stdout_events_enabled=false

stderr_logfile_maxbytes=1MB

stderr_logfile_backups=10

stderr_capture_maxbytes=1MB

stderr_events_enabled=false

启动supervisor服务:

~]# systemctl start supervisord.service

一般来说,按需修改配置文件的command,user,directory字段即可。

可以输入supervisorctl命令进入supervisor交互式控制台。可键入status查看当前监控的进程,stop停止对某进程的监控,start开启对某进程的监控。

最后需要注意,supervior只能监控运行于后台的普通进程,不能监控用systemctl启动的系统服务进程,对此类服务的监控,还是要借助专业监控工具。