Supervisor(http://supervisord.org/)是用Python開發的一個client/server服務,是Linux/Unix系統下的一個進程管理工具,不支持Windows系統。它能夠很方便的監聽、啓動、中止、重啓一個或多個進程。用Supervisor管理的進程,當一個進程意外被殺死,supervisort監聽到進程死後,會自動將它從新拉起,很方便的作到進程自動恢復的功能,再也不須要本身寫shell腳原本控制。python
由於Supervisor是Python開發的,安裝前先檢查一下系統否安裝了Python2.4以上版本。web
1.mac下,能夠先安裝brew,而後經過brew來安裝各類工具 brew install supervisor 2.Ubuntu系統下:apt-get install supervisor,經過這種方式安裝後,自動設置爲開機啓動 3.也能夠經過 pip install supervisor 進行安裝,可是須要手動啓動,而後設置爲開機啓動(不推薦這種安裝方式)
2.1supervisor配置shell
Supervisor 是一個 C/S 模型的程序,supervisord
是 server 端,supervisorctl
是 client 端。ubuntu
下面介紹 supervisord 配置方法。supervisord 的配置文件默認位於 /etc/supervisor/supervisord.conf
,內容以下(;
後面爲註釋):tomcat
; supervisor config file [unix_http_server] file=/var/run/supervisor.sock ; (the path to the socket file) UNIX socket 文件,supervisorctl 會使用 chmod=0700 ; sockef file mode (default 0700) socket 文件的 mode,默認是 0700 [supervisord] logfile=/var/log/supervisor/supervisord.log ; (main log file;default $CWD/supervisord.log) 日誌文件,默認是 $CWD/supervisord.log pidfile=/var/run/supervisord.pid ; (supervisord pidfile;default supervisord.pid) pid 文件 childlogdir=/var/log/supervisor ; ('AUTO' child log dir, default $TEMP) ; 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:///var/run/supervisor.sock ; use a unix:// URL for a unix socket 經過 UNIX socket 鏈接 supervisord,路徑與 unix_http_server 部分的 file 一致 ; 在增添須要管理的進程的配置文件時,推薦寫到 `/etc/supervisor/conf.d/` 目錄下,因此 `include` 項,就須要像以下配置。 ; 包含其餘的配置文件 [include] files = /etc/supervisor/conf.d/*.conf ; 引入 `/etc/supervisor/conf.d/` 下的 `.conf` 文件
2.2管理進程配置安全
program 的配置文件就寫在,supervisord 配置中 include
項的路徑下:/etc/supervisor/conf.d/
,而後 program 的配置文件命名規則推薦:app_name.conf服務器
[program:app] ; 程序名稱,在 supervisorctl 中經過這個值來對程序進行一系列的操做 autorestart=True ; 程序異常退出後自動重啓 autostart=True ; 在 supervisord 啓動的時候也自動啓動 redirect_stderr=True ; 把 stderr 重定向到 stdout,默認 false environment=PATH="/home/app_env/bin" ; 能夠經過 environment 來添加須要的環境變量,一種常見的用法是使用指定的 virtualenv 環境 command=python server.py ; 啓動命令,與手動在命令行啓動的命令是同樣的 user=ubuntu ; 用哪一個用戶啓動 directory=/home/app/ ; 程序的啓動目錄 stdout_logfile_maxbytes = 20MB ; stdout 日誌文件大小,默認 50MB stdout_logfile_backups = 20 ; stdout 日誌文件備份數 ; stdout 日誌文件,須要注意當指定目錄不存在時沒法正常啓動,因此須要手動建立目錄(supervisord 會自動建立日誌文件) stdout_logfile = /data/logs/usercenter_stdout.log
須要注意:app
workon
,修改environment參數:environment=PATH="/home/username/.virtualenvs/myproject/bin"
案例:socket
配置Django項目,啓動方式:supervisorctl start test工具
[program:test] command=/srv/envs/mimas/bin/gunicorn gm_rpcd.wsgi:application --workers=2 -k gevent --bind=0.0.0.0:8088 --user=test --chdir /srv/apps/test/ environment="指定項目的虛擬環境路徑" user=test stdout_logfile=/data/log/test/supervisor/supervisor.stdout.log stdout_logfile_maxbytes=1MB stdout_logfile_backups=10 stderr_logfile=/data/log/test/supervisor/supervisor.stderr.log stderr_logfile_maxbytes=1MB stderr_logfile_backups=10
配置celery,啓動方式:supervisorctl start test-celery
[program:test-celery] command=/srv/envs/test/bin/celery worker -A user_hierarchy --loglevel=DEBUG -c 2 directory=/srv/apps/test user=test stdout_logfile=/data/log/test/supervisor/celery.log stderr_logfile=/data/log/test/supervisor/celery_error.log startsecs=10 stopwaitsecs = 180 stopasgroup=true killasgroup=true
配置celery-beat,啓動方式:supervisorctl start test-beat
[program:test-celerybeat] command=/srv/envs/test/bin/celery beat -A user_hierarchy --loglevel=DEBUG # 啓動這個任務的命令 directory=/srv/apps/test user=test stdout_logfile=/data/log/test/supervisor/celerybeat.log stderr_logfile=/data/log/test/supervisor/celerybeat_error.log startsecs=10 stopwaitsecs = 180 stopasgroup=true killasgroup=true
supervisorctl 是 supervisord 的命令行客戶端工具,使用的配置和 supervisord 同樣
supervisorctl status 查看全部進程狀態
supervisorctl stop tomcat 中止某個進程
supervisorctl start tomcat 啓動某個進程
supervisorctl restart tomcat 重啓某個進程
[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 ;登陸管理後臺的密碼
出於安全考慮,默認配置是沒有開啓web管理界面,須要修改supervisord.conf配置文件打開http訪權限。
須要訪問,則去掉前面的分號,配置端口便可。
supervisord -c /etc/supervisor/supervisord.conf
6.1配置systemctl服務
1> 進入/lib/systemd/system目錄,並建立supervisor.service文件
[Unit] Description=supervisor After=network.target [Service] Type=forking ExecStart=/usr/bin/supervisord -c /etc/supervisor/supervisord.conf ExecStop=/usr/bin/supervisorctl $OPTIONS shutdown ExecReload=/usr/bin/supervisorctl $OPTIONS reload KillMode=process Restart=on-failure RestartSec=42s [Install] WantedBy=multi-user.target
2> 設置開機啓動
systemctl enable supervisor.service
systemctl daemon-reload
3>修改文件權限爲766
chmod 766 supervisor.service
6.2配置service類型服務
參考:https://blog.csdn.net/xyang81/article/details/51555473