supervisor安裝、使用詳解

supervisor是用python寫的一個進程管理工具,用來啓動,重啓,關閉進程。php

1 supervisor的安裝html

pip install supervisorpython

2 supervisor的配置文件(supervisor安裝完畢後,會有一個配置文件supervisord.conf)web

echo_supervisord_conf瀏覽器

3 咱們使用重定向運算符將配置文件定向到/etc路徑下(方便管理)安全

echo_supervisord_conf>/etc/supervisord.conf服務器

4 配置文件詳解socket

[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

5 進程Program配置工具

[program:soc_server]
directory = /var/www/html/ichat ; 程序的啓動目錄
command =  php soc_server.php start ; 啓動命令,能夠看出與手動在命令行啓動的命令是同樣的
autostart = true ; 在 supervisord 啓動的時候也自動啓動
startsecs = 5 ; 啓動 5 秒後沒有異常退出,就看成已經正常啓動了
autorestart = true ; 程序異常退出後自動重啓
startretries = 3 ; 啓動失敗自動重試次數,默認是 3
user = root ; 用哪一個用戶啓動
redirect_stderr = true ; 把 stderr 重定向到 stdout,默認 false
stdout_logfile_maxbytes = 20MB ; stdout 日誌文件大小,默認 50MB
stdout_logfile_backups = 20 ; stdout 日誌文件備份數
; stdout 日誌文件,須要注意當指定目錄不存在時沒法正常啓動,因此須要手動建立目錄(supervisord 會自動建立日誌文件)
stdout_logfile = /data/logs/soc_server_stdout.log

; 能夠經過 environment 來添加須要的環境變量,一種常見的用法是修改 PYTHONPATH
; environment=PYTHONPATH=$PYTHONPATH:/path/to/somewhere
[program:web_server]
directory = /var/www/html/ichat ; 程序的啓動目錄
command =  php web_server.php start ; 啓動命令,能夠看出與手動在命令行啓動的命令是同樣的
autostart = true ; 在 supervisord 啓動的時候也自動啓動
startsecs = 5 ; 啓動 5 秒後沒有異常退出,就看成已經正常啓動了
autorestart = true ; 程序異常退出後自動重啓
startretries = 3 ; 啓動失敗自動重試次數,默認是 3
user = root ; 用哪一個用戶啓動
redirect_stderr = true ; 把 stderr 重定向到 stdout,默認 false
stdout_logfile_maxbytes = 20MB ; stdout 日誌文件大小,默認 50MB
stdout_logfile_backups = 20 ; stdout 日誌文件備份數
; stdout 日誌文件,須要注意當指定目錄不存在時沒法正常啓動,因此須要手動建立目錄(supervisord 會自動建立日誌文件)
stdout_logfile = /data/logs/soc_server_stdout.log

; 能夠經過 environment 來添加須要的環境變量,一種常見的用法是修改 PYTHONPATH
; environment=PYTHONPATH=$PYTHONPATH:/path/to/somewhere
[program:soc_server]
command=php /var/www/html/ichat/soc_server.php start
process_name=%(program_name)s ; process_name expr (default %(program_name)s)
numprocs=1                    ; number of processes copies to start (def 1)
autostart=true                ; start at supervisord start (default: true)
autorestart=unexpected        ; whether/when to restart (default: unexpected)
startsecs=1                   ; number of secs prog must stay running (def. 1)
startretries=3                ; max # of serial start failures (default 3)

[program:web_server]
command=php /var/www/html/ichat/web_server.php start
process_name=%(program_name)s ; process_name expr (default %(program_name)s)
numprocs=1                    ; number of processes copies to start (def 1)
autostart=true                ; start at supervisord start (default: true)
autorestart=unexpected        ; whether/when to restart (default: unexpected)
startsecs=1                   ; number of secs prog must stay running (def. 1)
startretries=3                ; max # of serial start failures (default 3)

[group:ichat_soc]
programs=soc_server
priority=999

[group:ichat_web]
programs=web_server
priority=999

 

推薦將各個進程配置放到單獨的文件中,而後經過[include]配置項引用ui

[include]
;files = relative/directory/*.ini
files = /etc/supervisor/*.conf

6 supervisor服務啓動

supervisord -c /etc/supervisord.conf

7 supervisor服務客戶端管理

supervisorctl status //查看狀態

supervisorctl start web_server //開啓一個進程

supervisorctl stop web_server //中止一個進程

supervisorctl restart web_server //重啓一個進程

supervisorctl reload //從新加載配置

supervisorctl update //更新啓動列表

 

8 supervisor web管理界面

;[inet_http_server] ; HTTP 服務器,提供 web 管理界面
;port=127.0.0.1:9001 ; Web 管理後臺運行的 IP 和端口,若是開放到公網,須要注意安全性 ;username=user ; 登陸管理後臺的用戶名 ;password=123 ; 登陸管理後臺的密碼

在瀏覽器中輸入http://127.0.0.1:9001,可進入web管理界面

相關文章
相關標籤/搜索