supervisor 使用 Python开发的进程管理工具,可以方便的对用户定义的进程进行启动、关闭、重启,并可以对以为关闭的进程重启;且可以监控执行状态、日志输出等。

supervisor 安装

1
yum -y install supervisor

安装路径 /usr/bin/supervisord, 配置文件 /etc/supervisor.conf

supervisor启动

手动启动

1
/usr/bin/supervisord -c /etc/supervisor.conf

手动关闭

1
/usr/bin/supervisorctl stop all

自动启动

1
2
3
vim /etc/supervisrod.conf

nodaemon=false 改成true

或者编辑 vi /etc/rc.local 实现开机启动,添加在 exit 0

1
/usr/local/bin/supervisord

配置说明

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
;supervisord.conf

[unix_http_server]
file=/tmp/supervisor.sock ; UNIX socket 文件,supervisorctl 会使用
;chmod=0700 ; socket 文件的 mode,默认是 0700
;chown=nobody:nogroup ; socket 文件的 owner,格式: uid:gid

;[inet_http_server] ; HTTP 服务器,提供 web 管理界面
;port=127.0.0.1:9001 ; Web 管理后台运行的 IP 和端口,如果开放到公网,需要注意安全性
;username=user ; 登录管理后台的用户名
;password=123 ; 登录管理后台的密码

[supervisord]
logfile=/tmp/supervisord.log ; 日志文件,默认是 $CWD/supervisord.log
logfile_maxbytes=50MB ; 日志文件大小,超出会 rotate,默认 50MB
logfile_backups=10 ; 日志文件保留备份数量默认 10
loglevel=info ; 日志级别,默认 info,其它: debug,warn,trace
pidfile=/tmp/supervisord.pid ; pid 文件
nodaemon=false ; 是否在前台启动,默认是 false,即以 daemon 的方式启动
minfds=1024 ; 可以打开的文件描述符的最小值,默认 1024
minprocs=200 ; 可以打开的进程数的最小值,默认 200

; the below section must remain in the config file for RPC
; (supervisorctl/web interface) to work, additional interfaces may be
; added by defining them in separate rpcinterface: sections
[rpcinterface:supervisor]
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface

[supervisorctl]
serverurl=unix:///tmp/supervisor.sock ; 通过 UNIX socket 连接 supervisord,路径与 unix_http_server 部分的 file 一致
;serverurl=http://127.0.0.1:9001 ; 通过 HTTP 的方式连接 supervisord

; 包含其他的配置文件
[include]
files = relative/directory/*.ini ; 可以是 *.conf 或 *.ini

脚本配置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
;program.conf

[program:belen] ;程序名
directory = /root/belen ; 程序的启动目录
command = python belen.py ; 启动命令,可以看出与手动在命令行启动的命令是一样的
autostart = true ; 在 supervisord 启动的时候也自动启动
startsecs = 5 ; 启动 5 秒后没有异常退出,就当作已经正常启动了
autorestart = true ; 程序异常退出后自动重启
startretries = 3 ; 启动失败自动重试次数,默认是 3
user = root ; 用哪个用户启动
redirect_stderr = true ; 把 stderr 重定向到 stdout,默认 false
stdout_logfile_maxbytes = 100MB ; stdout 日志文件大小,默认 50MB
stdout_logfile_backups = 10 ; stdout 日志文件备份数
; stdout 日志文件,需要注意当指定目录不存在时无法正常启动,所以需要手动创建目录(supervisord 会自动创建日志文件)
stdout_logfile = /root/belen/program.log

supervisorctl 命令简介

1
2
3
4
5
6
7
supervisorctl status				# 查看程序状态
supervisorctl stop Exchange # 关闭 Exchange 程序
supervisorctl start Exchange # 启动 Exchange 程序
supervisorctl restart Exchange # 重启 Exchange 程序
supervisorctl reload # 载入最新的配置文件,停止原来的所有进程并按新的配置启动管理所有进程
supervisorctl reread # 只更新配置文件
supervisorctl update # 重启配置文件修改过的程序