安装:pip install supervisor
默认配置文件位置:/etc/supervisord.conf
默认自定义进程管理配置文件位置:/etc/supervisord.d
自定义需要管理的进程配置文件后缀:ini
一个示例配置文件:
;项目名
[program:xxx]
;脚本目录
directory=/xxx
;脚本执行命令
command=python3 xxx.py
;supervisor启动的时候是否随着同时启动,默认True
autostart=true
;当程序exit的时候,这个program不会自动重启,默认unexpected,设置子进程挂掉后自动重启的情况,有三个选项,false,unexpected 和true。如果为false的时候,无论什么情况下,都不会被重新启动,如果为unexpected,只有当进程的退出码不在下面的exitcodes里面定义的
autorestart=true
;这个选项是子进程启动多少秒之后,此时状态如果是running,则我们认为启动成功了。默认值为1
startsecs=5
;脚本运行的用户身份
user=xxx
;日志输出
stderr_logfile=/tmp/xxx_stderr.log
stdout_logfile=/tmp/xxx_stdout.log
;把stderr重定向到stdout,默认 false
redirect_stderr = false
;stdout日志文件大小,默认 50MB
stdout_logfile_maxbytes = 50MB
;stdout日志文件备份数
stdout_logfile_backups = 3
进程管理常用命令:
启动 supervisord 服务:supervisord -c /etc/supervisord.conf
supervisorctl help # 查看帮助
supervisorctl status # 查看程序状态
supervisorctl stop program_name # 关闭指定的程序
supervisorctl start program_name # 启动指定的程序
supervisorctl restart program_name # 重启指定的程序
supervisorctl tail -f program_name # 查看该程序的日志
supervisorctl update # 重启配置文件修改过的程序
supervisorctl reload #重新载入配置的进程
欢迎交流!
欢迎来到这里!
我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。
注册 关于