1.supervisor安裝
apt-get install supervisor
2.編寫php配置檔案,檔名為.conf
;process_name=%(process_num)02d
;numprocs=5 #啟動幾個程序
autostart=true #隨著supervisord的啟動而啟動
autorestart=true #自動啟動
startsecs=1 #程式重啟時候停留在runing狀態的秒數
startretries=10 #啟動失敗時的最多重試次數
redirect_stderr=true #重定向stderr到stdout
user=daemon
[supervisord]
[supervisorctl]
3.將檔案放入/etc/supervisor/conf.d/下面
4.重啟服務 update 有問題,以後有時間再重點解決
root@iz252f8y3biz:/# service supervisor start
starting supervisor: error: .ini file does not include supervisord section
for help, use /usr/bin/supervisord -h
service supervisor restart
守護程序 supervisor
安裝 yum install superviosr 如果提示 缺少 epel release 則要先安裝 yum install epel release 啟動supervisor supervisord c etc supervisord.conf supervisorctl c etc supe...
Supervisor 程序守護
先看下本機是否有 我的本機已經有了。root a1 supervisord.d whereis supervisord supervisord usr bin supervisord etc supervisord.d etc supervisord.conf root a1 supervisord...
supervisor程序守護
supervisor是用python開發的乙個client server服務,是linux unix系統下的乙個程序管理工具。可以很方便的監聽 啟動 停止 重啟乙個或多個程序。用supervisor管理的程序,當乙個程序意外被殺死,supervisor監聽到程序死後,會自動將它重啟,很方便的做到程序...