解釋
實現進程服務管理,supervisort監聽到進程死後,會自動將它從新拉起,很方便的作到進程自動恢復的功能,再也不須要本身寫shell腳原本控制
安裝
包管理工具安裝
root@mysql-2:~# apt-get install -y supervisor
pip安裝
root@mysql-2:~# pip install supervisor
配置文件介紹
root@mysql-2:~# cat /etc/supervisor/supervisord.conf
[unix_http_server] ; socket 文件,supervisorctl 會使用
file=/var/run/supervisor.sock ; (the path to the socket file)
chmod=0700 ; sockef file mode (default 0700)
;[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,若是設成0,表示不限制大小
logfile_backups=10 ;日誌文件保留備份數量默認10,設爲0表示不備份
loglevel=info ;日誌級別,默認info,其它: debug,warn,trace
pidfile=/tmp/supervisord.pid ;pid 文件
nodaemon=false ;是否在前臺啓動,默認是false,即以 daemon 的方式啓動
minfds=1024 ;能夠打開的文件描述符的最小值,默認 1024
minprocs=200 ;能夠打開的進程數的最小值,默認 200
[supervisorctl]
serverurl=unix:///var/run/supervisor.sock ;經過UNIX socket鏈接supervisord,路徑與unix_http_server部分的file一致
[program:xx]
command=systemctl restart nginx ; 程序啓動命令
; command=/bin/sh -c "exec /usr/local/redis/bin/redis-server /etc/redis/redis.conf"
autostart=true ; 在supervisord啓動的時候也自動啓動
startsecs=10 ; 啓動10秒後沒有異常退出,就表示進程正常啓動了,默認爲1秒
autorestart=true ; 程序退出後自動重啓,可選值:[unexpected,true,false],默認爲unexpected,表示進程意外殺死後才重啓
startretries=3 ; 啓動失敗自動重試次數,默認是3
user=tomcat ; 用哪一個用戶啓動進程,默認是root
priority=999 ; 進程啓動優先級,默認999,值小的優先啓動
redirect_stderr=true ; 把stderr重定向到stdout,默認false
stdout_logfile_maxbytes=20MB ; stdout 日誌文件大小,默認50MB
stdout_logfile_backups = 20 ; stdout 日誌文件備份數,默認是10
; stdout 日誌文件,須要注意當指定目錄不存在時沒法正常啓動,因此須要手動建立目錄(supervisord 會自動建立日誌文件)
stdout_logfile=/data/wwwlogs/nginx-access-sup.log
stopasgroup=false ;默認爲false,進程被殺死時,是否向這個進程組發送stop信號,包括子進程
killasgroup=false ;默認爲false,向進程組發送kill信號,包括子進程
[include]
files = /etc/supervisor/conf.d/*.conf ;能夠指定一個或多個以.conf結束的配置文件
supervisor 管理nginx
root@mysql-2:/etc/supervisor# cat /etc/supervisor/conf.d/nginx-sup.conf
[program:nginx]
process_name=%(program_name)s_%(process_num)02d
command=/usr/local/nginx/sbin/nginx -g 'daemon off;'
autostart=true
autorestart=true
user=root
startsecs=0
redirect_stderr=true
stdout_events_enabled=true
stderr_logfile_maxbytes=20MB
stdout_logfile_backups = 5
stdout_logfile=/data/wwwlogs/nginx-sup.log
root@mysql-2:/etc/supervisor# supervisorctl reload #重載配置
Restarted supervisord
root@mysql-2:/etc/supervisor# supervisorctl status #查看啓動任務
nginx:nginx_00 RUNNING pid 19191, uptime 0:00:00
supervisor 監控redis
root@mysql-2:/etc/supervisor/conf.d# vim redis-sup.conf
[program:redis-server]
command=/bin/sh -c "exec /usr/local/redis/bin/redis-server /etc/redis/redis.conf"
autostart=true
autorestart=true
startretries=2
startsecs=10
stdout_events_enabled=true
stderr_events_enabled=true
stderr_logfile_maxbytes=20MB
stdout_logfile_backups = 5
[program:redis-server]
command=/bin/sh -c "exec /usr/local/redis/bin/redis-server /etc/redis/redis.conf"
autostart=true
autorestart=true
;startretries=2
startsecs=0
stdout_events_enabled=true
stderr_events_enabled=true
stderr_logfile_maxbytes=20MB
stdout_logfile_backups = 5
supservisor php-fpm
[program:php-fpm]
process_name=%(program_name)s_%(process_num)02d
command=/usr/local/php/sbin/php-fpm --fpm-config /usr/local/php/etc/php-fpm.conf
stdout_logfile=/data/wwwlogs/php-fpm-sup.log
autostart=true
autorestart=true
startretries=5
; startsecs=0
exitcodes=0,2,70
stopsignal=QUIT
stopwaitsecs=2
此處須要修改:/usr/local/php/etc/php-fpm.conf裏面的daemonize = no
root@mysql-2:/usr/local/php/sbin# supervisorctl stop php-fpm:php-fpm_00
root@mysql-2:/usr/local/php/sbin# supervisorctl reread
root@mysql-2:/usr/local/php/sbin# supervisorctl update
root@mysql-2:/usr/local/php/sbin# supervisorctl start php-fpm:php-fpm_00
root@mysql-2:/etc/supervisor/conf.d# supervisorctl status
nginx RUNNING pid 25695, uptime 0:29:53
php-fpm:php-fpm_00 RUNNING pid 31617, uptime 0:02:34
redis-server RUNNING pid 32043, uptime 0:00:00