一、Supervisor簡單介紹
supervisor是一個 Client/Server模式的系統,允許使用者在類unix作業系統上監視和控制多個程式,或者可以說是多個程式。supervisor與launchd,daemontools,runit等程式有著相同的功能,與其中某些程式不同的是,它並不作為“id 為 1的程式”而替代init。相反,它用於控制應用程式,像啟動其它程式一樣,通俗理解就是,把Supervisor服務管理的程式程式,它們作為supervisor的子程式來執行,而supervisor是父程式。supervisor來監控管理子程式的啟動關閉和異常退出後的自動啟動。
至於為什麼要用supervisor來管理程式,是因為相對於linux傳統的程式管理(即系統自帶的init 程式管理)方式來說,它有很多的優勢:
1) 簡單方便
通常管理linux程式的時候,一般來說都需要自己編寫一個能夠實現程式start/stop/restart/reload功能的指令碼,然後丟到/etc/init.d/下面。其實這麼做有很多不好的地方:
a) 編寫這個指令碼,耗時耗力。
b) 當這個程式掛掉的時候,linux不會自動重啟它的,想要自動重啟的話,還要自己另外寫一個監控重啟指令碼。
supervisor則可以完美的解決上面這那兩個問題! 那麼supervisor怎麼解決呢?
a) supervisor管理程式,就是通過fork/exec的方式把這些被管理的程式,當作supervisor的子程式來啟動。這樣的話,只要在supervisor的配置檔案中,把要管理的程式的可執行檔案的路徑寫進去就OK了。這樣就省下了自己寫指令碼管理linux程式的麻煩了。
b) 被管理程式作為supervisor的子程式,當子程式掛掉的時候,父程式可以準確獲取子程式掛掉的資訊的,所以也就可以對掛掉的子程式進行自動重啟了, 至於重啟還是不重啟,也要看配置檔案裡面有沒有設定autostart=true。
2) 精確
linux對程式狀態的反饋有時候不太準確, 也就是說linux程式通常很難獲得準確的up/down狀態, Pidfiles經常說謊! 而supervisor監控子程式,得到的子程式狀態無疑是準確的。supervisord將程式作為子程式啟動,所以它總是知道其子程式的正確的up/down狀態,可以方便的對這些資料進行查詢.
3) 程式分組
程式支援分組啟動和停止,也支援啟動順序,即‘優先順序’,supervisor允許為程式分配優先順序,並允許使用者通過supervisorctl客戶端發出命令,如“全部啟動”和”重新啟動所有“,它們以預先分配的優先順序順序啟動。還可以將程式分為”程式組“,一組邏輯關聯的程式可以作為一個單元停止或啟動。程式組supervisor可以對程式組統一管理,也就是說我們可以把需要管理的程式寫到一個組裡面,然後把這個組作為一個物件進行管理,如啟動,停止,重啟等等操作。而linux系統則是沒有這種功能的,想要停止一個程式,只能一個一個的去停止,要麼就自己寫個指令碼去批量停止。
4) 集中式管理
supervisor管理的程式,程式組資訊,全部都寫在一個ini格式的檔案裡就OK了。管理supervisor時, 可以在本地進行管理,也可以遠端管理,而且supervisor提供了一個web介面,可以在web介面上監控,管理程式。 當然了,本地,遠端和web管理的時候,需要呼叫supervisor的xml_rpc介面。
5) 可擴充套件性
supervisor有一個簡單的事件(event)通知協議,還有一個用於控制的XML-RPC介面,可以用Python開發人員來擴充套件構建。
6) 許可權
總所周知, linux的程式特別是偵聽在1024埠之下的程式,一般使用者大多數情況下,是不能對其進行控制的。想要控制的話,必須要有root許可權。然而supervisor提供了一個功能,可以為supervisord或者每個子程式,設定一個非root的user,這個user就可以管理它對應的程式了。
7) 相容性,穩定性
supervisor由Python編寫,在除Windows作業系統以外基本都支援,如linux,Mac OS x,solaris,FreeBSD系統
二、Supervisor組成部分
1)supervisord: 服務守護程式
supervisor伺服器的程式名是supervisord。它主要負責在自己的呼叫中啟動子程式,響應客戶端的命令,重新啟動崩潰或退出的程式,記錄其子程式stdout和stderr的輸出,以及生成和處理對應於子程式生命週期中的"event"伺服器程式使用的配置檔案,通常路徑存放在/etc/supervisord.confa中。此配置檔案是INI格式的配置檔案。
2) supervisorctl:命令列客戶端
supervisor命令列的客戶端名稱是supervisorctl。它為supervisord提供了一個類似於shell的互動介面。使用supervisorctl,使用者可以檢視不同的supervisord程式列表,獲取控制子程式的狀態,如停止和啟動子程式
3) Web Server:提供與supervisorctl功能相當的WEB操作介面
一個可以通過Web介面來檢視和控制程式的狀態,預設監聽在9091上。
4) XML-RPC Interface:XML-RPC介面
supervisor用於控制的XML-RPC介面
三、Supervisor安裝 (YUM安裝)
centos系統下可以直接yum安裝, 前提是需要下載epel源, 下載地址: http://dl.fedoraproject.org/pub/epel/
==================centos6版本系統================== [root@localhost ~]# rpm -ivh epel-release-latest-6.noarch.rpm --force [root@localhost ~]# yum install -y supervisor 開機啟動 [root@localhost ~]# chkconfig supervisord on 啟動/關閉/重啟等操作 [root@localhost ~]# /etc/init.d/supervisord {start|stop|status|restart|reload|force-reload|condrestart} ==================centos7版本系統================== [root@localhost ~]# rpm -ivh epel-release-latest-7.noarch.rpm --force [root@localhost ~]# yum install -7 supervisor 開機啟動 [root@localhost ~]# systemctl enable supervisord 啟動/關閉/重啟等操作 [root@localhost ~]# systemctl start/stop/restart supervisord
特別注意另一種安裝方式: 除了yum安裝方式以外, 我們通過會選用pip或easy_install方式安裝supervisor. 但是supervisor目前只有python2支援的版本, 目前不支援python3.
centos7下安裝 [root@localhost ~]# yum install -y python-setuptools [root@localhost ~]# easy_install supervisor 或者 "pip install supervisor" 配置檔案, 將預設配置儲存在/etc/supervisord.conf中 [root@localhost ~]# echo_supervisord_conf > /etc/supervisord.conf 啟動 [root@localhost ~]# supervisord -c /etc/supervisord.conf [root@localhost ~]# ps -ef|grep /etc/supervisord root 26586 1 0 02:02 ? 00:00:00 /usr/bin/python /usr/bin/supervisord -c /etc/supervisord.conf root 26588 26184 0 02:02 pts/0 00:00:00 grep --color=auto /etc/supervisord [root@localhost ~]# which supervisord /usr/bin/supervisord [root@localhost ~]# which supervisorctl /usr/bin/supervisorctl 如果沒有下面檔案, 就手動建立 [root@localhost ~]# vim /usr/lib/systemd/system/supervisord.service [Unit] Description=Process Monitoring and Control Daemon After=rc-local.service nss-user-lookup.target [Service] Type=forking ExecStart=/usr/bin/supervisord -c /etc/supervisord.conf ExecReload=/usr/bin/supervisorctl reload ExecStop=/usr/bin/supervisorctl shutdown [Install] WantedBy=multi-user.target 設定755許可權 [root@localhost ~]# chmod 755 /usr/lib/systemd/system/supervisord.service 重啟服務(多測試幾次) [root@localhost ~]# ps -ef|grep /etc/supervisord root 26586 1 0 02:02 ? 00:00:00 /usr/bin/python /usr/bin/supervisord -c /etc/supervisord.conf root 26933 26184 0 02:08 pts/0 00:00:00 grep --color=auto /etc/supervisord [root@localhost ~]# /usr/bin/supervisorctl shutdown Shut down [root@localhost ~]# ps -ef|grep /etc/supervisord root 26940 26184 0 02:08 pts/0 00:00:00 grep --color=auto /etc/supervisord 由於上面的supervisord程式是使用配置檔案手動啟動的, 首次要使用下面的命令關閉,然後使用"systemctl start/stop supervisord" 才會生效! 如果第一次不使用下面命令關閉, 而首次就使用"systemctl stop supervisord" 則關閉不了. [root@localhost ~]# systemctl start supervisord [root@localhost ~]# ps -ef|grep /etc/supervisord root 27049 1 0 02:09 ? 00:00:00 /usr/bin/python /usr/bin/supervisord -c /etc/supervisord.conf root 27052 26184 0 02:09 pts/0 00:00:00 grep --color=auto /etc/supervisord [root@localhost ~]# systemctl stop supervisord [root@localhost ~]# ps -ef|grep /etc/supervisord root 27068 26184 0 02:09 pts/0 00:00:00 grep --color=auto /etc/supervisord [root@localhost ~]# systemctl start supervisord [root@localhost ~]# systemctl restart supervisord [root@localhost ~]# systemctl reload supervisord [root@localhost ~]# ps -ef|grep /etc/supervisord root 27097 1 0 02:09 ? 00:00:00 /usr/bin/python /usr/bin/supervisord -c /etc/supervisord.conf root 27100 26184 0 02:09 pts/0 00:00:00 grep --color=auto /etc/supervisord 開機啟動 [root@localhost ~]# systemctl enable supervisord Created symlink from /etc/systemd/system/multi-user.target.wants/supervisord.service to /usr/lib/systemd/system/supervisord.service. 如下簡單配置例項 [root@localhost ~]# vim /etc/supervisord.conf ....... # 不採用sock連線方式 ;[unix_http_server] ;file=/tmp/supervisor.sock ; the path to the socket file ;chmod=0700 ; socket file mode (default 0700) ;chown=nobody:nogroup ; socket file uid:gid owner ;username=user ; default is no username (open server) ;password=123 ; default is no password (open server) #採用http連線方式, 並設定登入驗證資訊 [inet_http_server] ; inet (TCP) server disabled by default port=192.168.10.10:9001 ; ip_address:port specifier, *:port for all iface username=user ; default is no username (open server) password=123 ; default is no password (open server) # 新增被監控程式,被監控程式自身非後臺執行 [program:nginx] command=/usr/local/nginx/sbin/nginx process_name=nginx autostart=true autorestart=true 使配置生效 [root@localhost ~]# systemctl reload supervisord 需要注意的地方 1) 如果autostart設為true(預設),而被監控程式為單例模式執行,則在被監控程式已執行的情況下重啟supervisord, supervisord會不停的嘗試啟動被監控程式,造成資源浪費。 2) 被監控程式的stdout和stderr輸出預設被儲存在單獨的臨時檔案中,可根據需要進行配置。supervisord預設啟動時會清除這些臨時檔案, 如需要可修改配置nocleanup=true。建議將被監控程式的輸出手動重定向。 執行 [root@localhost ~]# systemctl start supervisord
supervisor日誌檔案: /var/log/supervisor/supervisord.log
supervisor配置檔案: /etc/supervisord.conf
supervisor連線方式: http和sock 兩種
supervisor監控管理
1) web介面管理 為了更方便的遠端管理 Supervisor ,我們還可以開啟其自帶的 web 控制檯。開啟 /supervisord.conf ,在檔案末尾增加以下內容: [root@kevin ~]# vim /etc/supervisord.conf ...... [inet_http_server] port=*:5000 username=user password=123456 配置說明: port 為監聽埠,username 和 password 分別為帳號和密碼。 儲存檔案後需要重啟supervisor 然後訪問"http://ip:5000" , 輸入上面設定的使用者名稱和密碼即可開啟supervisor的web 控制檯了。 2) 客戶端命令列操作 [root@170~ ~]# supervisorctl -s http://ip:port -u user -p passwd command 3) 通過shell來管理supervisor ,可以使用以下命令: supervisorctl start appname #啟動特定程式 supervisorctl stop appname #停止特定程式 supervisorctl restart appname #重啟特定程式 supervisorctl start all #啟動所有程式 supervisorctl stop all #停止所有程式 supervisorctl restart all #重啟所有程式 最後需要注意的是: 如果使用 Supervisor 監控 shell 指令碼,不能在指令碼中完全使用 nohup, setsid 等後臺執行命令,否則 supervisor 會誤認為程式自動退出而不斷重啟指令碼。
Supervisord安裝完成後有兩個可用的命令列: supervisor和supervisorctl
常見的命令如下:
supervisord 初始啟動Supervisord,啟動、管理配置中設定的程式
supervisorctl stop programxxx 停止某一個程式(programxxx),programxxx為[program:chatdemon]裡配置的值,這個示例就是chatdemon
supervisorctl start programxxx 啟動某個程式
supervisorctl restart programxxx 重啟某個程式
supervisorctl stop groupworker 重啟所有屬於名為groupworker這個分組的程式(start,restart同理)
supervisorctl stop all 停止全部程式,注:start、restart、stop都不會載入最新的配置檔案
supervisorctl reload 載入最新的配置檔案,停止原有程式並按新的配置啟動、管理所有程式
supervisorctl update 根據最新的配置檔案,啟動新配置或有改動的程式,配置沒有改動的程式不會受影響而重啟。注意:顯示用stop停止掉的程式,用reload或者update都不會自動重啟
常見命令
supervisorctl tail programname //檢視programname的日誌
supervisorctl tail redis //檢視日誌
supervisor事件監聽及通知機制
- supervisor向listeners傳送和子程式或自身有關的notification。對於同一pool內的listeners,supervisor會選取任一可用的進行通知。
- 配置被監控程式[program:x]的日誌Capture Mode,被監控程式可向stdout輸出業務資料,由supervisod捕獲這些資料,發給listener。
- 配置event-listener:監聽PROCESS_COMMUNICATION_STDOUT事件
- envent-listener模組開發:使用python的supervisor.childutils模組。該模組可作為監控代理模組,和程式及網管服務通訊。與網管服務可採用redis的list實現。
四、Supervisor配置檔案說明 (其中[program:x]中配置要監控的程式 )
[unix_http_server] file=/tmp/supervisor.sock ; socket檔案的路徑,supervisorctl用XML_RPC和supervisord通訊就是通過它進行 的。如果不設定的話,supervisorctl也就不能用了 不設定的話,預設為none。 非必須設定 ;chmod=0700 ; 這個簡單,就是修改上面的那個socket檔案的許可權為0700 不設定的話,預設為0700。 非必須設定 ;chown=nobody:nogroup ; 這個一樣,修改上面的那個socket檔案的屬組為user.group 不設定的話,預設為啟動supervisord程式的使用者及屬組。非必須設定 ;username=user ; 使用supervisorctl連線的時候,認證的使用者 不設定的話,預設為不需要使用者。 非必須設定 ;password=123 ; 和上面的使用者名稱對應的密碼,可以直接使用明碼,也可以使用SHA加密 如:{SHA}82ab876d1387bfafe46cc1c8a2ef074eae50cb1d 預設不設定。。。非必須設定 ;[inet_http_server] ; 偵聽在TCP上的socket,Web Server和遠端的supervisorctl都要用到他 不設定的話,預設為不開啟。非必須設定 ;port=127.0.0.1:9001 ; 這個是偵聽的IP和埠,偵聽所有IP用 :9001或*:9001。 這個必須設定,只要上面的[inet_http_server]開啟了,就必須設定它 ;username=user ; 這個和上面的uinx_http_server一個樣。非必須設定 ;password=123 ; 這個也一個樣。非必須設定 [supervisord] ;這個主要是定義supervisord這個服務端程式的一些引數的 這個必須設定,不設定,supervisor就不用幹活了 logfile=/tmp/supervisord.log ; 這個是supervisord這個主程式的日誌路徑,注意和子程式的日誌不搭嘎。 預設路徑$CWD/supervisord.log,$CWD是當前目錄。。非必須設定 logfile_maxbytes=50MB ; 這個是上面那個日誌檔案的最大的大小,當超過50M的時候,會生成一個新的日 志檔案。當設定為0時,表示不限制檔案大小 預設值是50M,非必須設定。 logfile_backups=10 ; 日誌檔案保持的數量,上面的日誌檔案大於50M時,就會生成一個新檔案。檔案 數量大於10時,最初的老檔案被新檔案覆蓋,檔案數量將保持為10 當設定為0時,表示不限制檔案的數量。 預設情況下為10。。。非必須設定 loglevel=info ; 日誌級別,有critical, error, warn, info, debug, trace, or blather等 預設為info。。。非必須設定項 pidfile=/tmp/supervisord.pid ; supervisord的pid檔案路徑。 預設為$CWD/supervisord.pid。。。非必須設定 nodaemon=false ; 如果是true,supervisord程式將在前臺執行 預設為false,也就是後臺以守護程式執行。。。非必須設定 minfds=1024 ; 這個是最少系統空閒的檔案描述符,低於這個值supervisor將不會啟動。 系統的檔案描述符在這裡設定cat /proc/sys/fs/file-max 預設情況下為1024。。。非必須設定 minprocs=200 ; 最小可用的程式描述符,低於這個值supervisor也將不會正常啟動。 ulimit -u這個命令,可以檢視linux下面使用者的最大程式數 預設為200。。。非必須設定 ;umask=022 ; 程式建立檔案的掩碼 預設為022。。非必須設定項 ;user=chrism ; 這個引數可以設定一個非root使用者,當我們以root使用者啟動supervisord之後。 我這裡面設定的這個使用者,也可以對supervisord進行管理 預設情況是不設定。。。非必須設定項 ;identifier=supervisor ; 這個引數是supervisord的識別符號,主要是給XML_RPC用的。當你有多個 supervisor的時候,而且想呼叫XML_RPC統一管理,就需要為每個 supervisor設定不同的識別符號了 預設是supervisord。。。非必需設定 ;directory=/tmp ; 這個引數是當supervisord作為守護程式執行的時候,設定這個引數的話,啟動 supervisord程式之前,會先切換到這個目錄 預設不設定。。。非必須設定 ;nocleanup=true ; 這個引數當為false的時候,會在supervisord程式啟動的時候,把以前子程式 產生的日誌檔案(路徑為AUTO的情況下)清除掉。有時候我們們想要看歷史日誌,當 然不想日誌被清除了。所以可以設定為true 預設是false,有除錯需求的同學可以設定為true。。。非必須設定 ;childlogdir=/tmp ; 當子程式日誌路徑為AUTO的時候,子程式日誌檔案的存放路徑。 預設路徑是這個東西,執行下面的這個命令看看就OK了,處理的東西就預設路徑 python -c "import tempfile;print tempfile.gettempdir()" 非必須設定 ;environment=KEY="value" ; 這個是用來設定環境變數的,supervisord在linux中啟動預設繼承了linux的 環境變數,在這裡可以設定supervisord程式特有的其他環境變數。 supervisord啟動子程式時,子程式會拷貝父程式的記憶體空間內容。 所以設定的 這些環境變數也會被子程式繼承。 小例子:environment=name="haha",age="hehe" 預設為不設定。。。非必須設定 ;strip_ansi=false ; 這個選項如果設定為true,會清除子程式日誌中的所有ANSI 序列。什麼是ANSI 序列呢?就是我們的\n,\t這些東西。 預設為false。。。非必須設定 ; 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] ;這個選項是給XML_RPC用的,當然你如果想使用supervisord或者web server 這 個選項必須要開啟的 supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface [supervisorctl] ;這個主要是針對supervisorctl的一些配置 serverurl=unix:///tmp/supervisor.sock ; 這個是supervisorctl本地連線supervisord的時候,本地UNIX socket 路徑,注意這個是和前面的[unix_http_server]對應的 預設值就是unix:///tmp/supervisor.sock。。非必須設定 ;serverurl=http://127.0.0.1:9001 ; 這個是supervisorctl遠端連線supervisord的時候,用到的TCP socket路徑 注意這個和前面的[inet_http_server]對應 預設就是http://127.0.0.1:9001。。。非必須項 ;username=chris ; 使用者名稱 預設空。。非必須設定 ;password=123 ; 密碼 預設空。。非必須設定 ;prompt=mysupervisor ; 輸入使用者名稱密碼時候的提示符 預設supervisor。。非必須設定 ;history_file=~/.sc_history ; 這個引數和shell中的history類似,我們可以用上下鍵來查詢前面執行過的命令 預設是no file的。。所以我們想要有這種功能,必須指定一個檔案。。。非 必須設定 ; The below sample program section shows all possible program subsection values, ; create one or more 'real' program: sections to be able to control them under ; supervisor. ;[program:theprogramname] ;這個就是我們們要管理的子程式了,":"後面的是名字,最好別亂寫和實際程式 有點關聯最好。這樣的program我們可以設定一個或多個,一個program就是 要被管理的一個程式 ;command=/bin/cat ; 這個就是我們的要啟動程式的命令路徑了,可以帶引數 例子:/home/test.py -a 'hehe' 有一點需要注意的是,我們的command只能是那種在終端執行的程式,不能是 守護程式。這個想想也知道了,比如說command=service httpd start。 httpd這個程式被linux的service管理了,我們的supervisor再去啟動這個命令 這已經不是嚴格意義的子程式了。 這個是個必須設定的項 ;process_name=%(program_name)s ; 這個是程式名,如果我們下面的numprocs引數為1的話,就不用管這個引數 了,它預設值%(program_name)s也就是上面的那個program冒號後面的名字, 但是如果numprocs為多個的話,那就不能這麼幹了。想想也知道,不可能每個 程式都用同一個程式名吧。 ;numprocs=1 ; 啟動程式的數目。當不為1時,就是程式池的概念,注意process_name的設定 預設為1 。。非必須設定 ;directory=/tmp ; 程式執行前,會前切換到這個目錄 預設不設定。。。非必須設定 ;umask=022 ; 程式掩碼,預設none,非必須 ;priority=999 ; 子程式啟動關閉優先順序,優先順序低的,最先啟動,關閉的時候最後關閉 預設值為999 。。非必須設定 ;autostart=true ; 如果是true的話,子程式將在supervisord啟動後被自動啟動 預設就是true 。。非必須設定 ;autorestart=unexpected ; 這個是設定子程式掛掉後自動重啟的情況,有三個選項,false,unexpected 和true。如果為false的時候,無論什麼情況下,都不會被重新啟動, 如果為unexpected,只有當程式的退出碼不在下面的exitcodes裡面定義的退 出碼的時候,才會被自動重啟。當為true的時候,只要子程式掛掉,將會被無 條件的重啟 ;startsecs=1 ; 這個選項是子程式啟動多少秒之後,此時狀態如果是running,則我們認為啟 動成功了 預設值為1 。。非必須設定 ;startretries=3 ; 當程式啟動失敗後,最大嘗試啟動的次數。。當超過3次後,supervisor將把 此程式的狀態置為FAIL 預設值為3 。。非必須設定 ;exitcodes=0,2 ; 注意和上面的的autorestart=unexpected對應。。exitcodes裡面的定義的 退出碼是expected的。 ;stopsignal=QUIT ; 程式停止訊號,可以為TERM, HUP, INT, QUIT, KILL, USR1, or USR2等訊號 預設為TERM 。。當用設定的訊號去幹掉程式,退出碼會被認為是expected 非必須設定 ;stopwaitsecs=10 ; 這個是當我們向子程式傳送stopsignal訊號後,到系統返回資訊 給supervisord,所等待的最大時間。 超過這個時間,supervisord會向該 子程式傳送一個強制kill的訊號。 預設為10秒。。非必須設定 ;stopasgroup=false ; 這個東西主要用於,supervisord管理的子程式,這個子程式本身還有 子程式。那麼我們如果僅僅幹掉supervisord的子程式的話,子程式的子程式 有可能會變成孤兒程式。所以我們們可以設定可個選項,把整個該子程式的 整個程式組都幹掉。 設定為true的話,一般killasgroup也會被設定為true。 需要注意的是,該選項傳送的是stop訊號 預設為false。。非必須設定。。 ;killasgroup=false ; 這個和上面的stopasgroup類似,不過傳送的是kill訊號 ;user=chrism ; 如果supervisord是root啟動,我們在這裡設定這個非root使用者,可以用來 管理該program 預設不設定。。。非必須設定項 ;redirect_stderr=true ; 如果為true,則stderr的日誌會被寫入stdout日誌檔案中 預設為false,非必須設定 ;stdout_logfile=/a/path ; 子程式的stdout的日誌路徑,可以指定路徑,AUTO,none等三個選項。 設定為none的話,將沒有日誌產生。設定為AUTO的話,將隨機找一個地方 生成日誌檔案,而且當supervisord重新啟動的時候,以前的日誌檔案會被 清空。當 redirect_stderr=true的時候,sterr也會寫進這個日誌檔案 ;stdout_logfile_maxbytes=1MB ; 日誌檔案最大大小,和[supervisord]中定義的一樣。預設為50 ;stdout_logfile_backups=10 ; 和[supervisord]定義的一樣。預設10 ;stdout_capture_maxbytes=1MB ; 這個東西是設定capture管道的大小,當值不為0的時候,子程式可以從stdout 傳送資訊,而supervisor可以根據資訊,傳送相應的event。 預設為0,為0的時候表達關閉管道。。。非必須項 ;stdout_events_enabled=false ; 當設定為ture的時候,當子程式由stdout向檔案描述符中寫日誌的時候,將 觸發supervisord傳送PROCESS_LOG_STDOUT型別的event 預設為false。。。非必須設定 ;stderr_logfile=/a/path ; 這個東西是設定stderr寫的日誌路徑,當redirect_stderr=true。這個就不用 設定了,設定了也是白搭。因為它會被寫入stdout_logfile的同一個檔案中 預設為AUTO,也就是隨便找個地存,supervisord重啟被清空。。非必須設定 ;stderr_logfile_maxbytes=1MB ; 這個出現好幾次了,就不重複了 ;stderr_logfile_backups=10 ; 這個也是 ;stderr_capture_maxbytes=1MB ; 這個一樣,和stdout_capture一樣。 預設為0,關閉狀態 ;stderr_events_enabled=false ; 這個也是一樣,預設為false ;environment=A="1",B="2" ; 這個是該子程式的環境變數,和別的子程式是不共享的 ;serverurl=AUTO ; ; The below sample eventlistener section shows all possible ; eventlistener subsection values, create one or more 'real' ; eventlistener: sections to be able to handle event notifications ; sent by supervisor. ;[eventlistener:theeventlistenername] ;這個東西其實和program的地位是一樣的,也是suopervisor啟動的子進 程,不過它乾的活是訂閱supervisord傳送的event。他的名字就叫 listener了。我們可以在listener裡面做一系列處理,比如報警等等 樓主這兩天干的活,就是弄的這玩意 ;command=/bin/eventlistener ; 這個和上面的program一樣,表示listener的可執行檔案的路徑 ;process_name=%(program_name)s ; 這個也一樣,程式名,當下面的numprocs為多個的時候,才需要。否則預設就 OK了 ;numprocs=1 ; 相同的listener啟動的個數 ;events=EVENT ; event事件的型別,也就是說,只有寫在這個地方的事件型別。才會被髮送 ;buffer_size=10 ; 這個是event佇列快取大小,單位不太清楚,樓主猜測應該是個吧。當buffer 超過10的時候,最舊的event將會被清除,並把新的event放進去。 預設值為10。。非必須選項 ;directory=/tmp ; 程式執行前,會切換到這個目錄下執行 預設為不切換。。。非必須 ;umask=022 ; 淹沒,預設為none,不說了 ;priority=-1 ; 啟動優先順序,預設-1,也不扯了 ;autostart=true ; 是否隨supervisord啟動一起啟動,預設true ;autorestart=unexpected ; 是否自動重啟,和program一個樣,分true,false,unexpected等,注意 unexpected和exitcodes的關係 ;startsecs=1 ; 也是一樣,程式啟動後跑了幾秒鐘,才被認定為成功啟動,預設1 ;startretries=3 ; 失敗最大嘗試次數,預設3 ;exitcodes=0,2 ; 期望或者說預料中的程式退出碼, ;stopsignal=QUIT ; 幹掉程式的訊號,預設為TERM,比如設定為QUIT,那麼如果QUIT來幹這個程式 那麼會被認為是正常維護,退出碼也被認為是expected中的 ;stopwaitsecs=10 ; max num secs to wait b4 SIGKILL (default 10) ;stopasgroup=false ; send stop signal to the UNIX process group (default false) ;killasgroup=false ; SIGKILL the UNIX process group (def false) ;user=chrism ;設定普通使用者,可以用來管理該listener程式。 預設為空。。非必須設定 ;redirect_stderr=true ; 為true的話,stderr的log會併入stdout的log裡面 預設為false。。。非必須設定 ;stdout_logfile=/a/path ; 這個不說了,好幾遍了 ;stdout_logfile_maxbytes=1MB ; 這個也是 ;stdout_logfile_backups=10 ; 這個也是 ;stdout_events_enabled=false ; 這個其實是錯的,listener是不能傳送event ;stderr_logfile=/a/path ; 這個也是 ;stderr_logfile_maxbytes=1MB ; 這個也是 ;stderr_logfile_backups ; 這個不說了 ;stderr_events_enabled=false ; 這個也是錯的,listener不能傳送event ;environment=A="1",B="2" ; 這個是該子程式的環境變數 預設為空。。。非必須設定 ;serverurl=AUTO ; override serverurl computation (childutils) ; The below sample group section shows all possible group values, ; create one or more 'real' group: sections to create "heterogeneous" ; process groups. ;[group:thegroupname] ;這個東西就是給programs分組,劃分到組裡面的program。我們就不用一個一個去操作了 我們可以對組名進行統一的操作。 注意:program被劃分到組裡面之後,就相當於原來 的配置從supervisor的配置檔案裡消失了。。。supervisor只會對組進行管理,而不再 會對組裡面的單個program進行管理了 ;programs=progname1,progname2 ; 組成員,用逗號分開 這個是個必須的設定項 ;priority=999 ; 優先順序,相對於組和組之間說的 預設999。。非必須選項 ; The [include] section can just contain the "files" setting. This ; setting can list multiple files (separated by whitespace or ; newlines). It can also contain wildcards. The filenames are ; interpreted as relative to this file. Included files *cannot* ; include files themselves. ;[include] ;這個東西挺有用的,當我們要管理的程式很多的時候,寫在一個檔案裡面 就有點大了。我們可以把配置資訊寫到多個檔案中,然後include過來 ;files = relative/directory/*.ini
在這裡分享幾個supervisor配置樣例
[supervisord] http_port=/var/tmp/supervisor.sock ; (default is to run a UNIX domain socket server) ;http_port=127.0.0.1:9001 ; (alternately, ip_address:port specifies AF_INET) ;sockchmod=0700 ; AF_UNIX socketmode (AF_INET ignore, default 0700) ;sockchown=nobody.nogroup ; AF_UNIX socket uid.gid owner (AF_INET ignores) ;umask=022 ; (process file creation umask;default 022) logfile=/var/log/supervisor/supervisord.log ; (main log file;default $CWD/supervisord.log) logfile_maxbytes=50MB ; (max main logfile bytes b4 rotation;default 50MB) logfile_backups=10 ; (num of main logfile rotation backups;default 10) loglevel=info ; (logging level;default info; others: debug,warn) pidfile=/var/run/supervisord.pid ; (supervisord pidfile;default supervisord.pid) nodaemon=false ; (start in foreground if true;default false) minfds=1024 ; (min. avail startup file descriptors;default 1024) minprocs=200 ; (min. avail process descriptors;default 200) ;nocleanup=true ; (don't clean up tempfiles at start;default false) ;http_username=user ; (default is no username (open system)) ;http_password=123 ; (default is no password (open system)) ;childlogdir=/tmp ; ('AUTO' child log dir, default $TEMP) ;user=chrism ; (default is current user, required if root) ;directory=/tmp ; (default is not to cd during start) ;environment=KEY=value ; (key value pairs to add to environment) [supervisorctl] serverurl=unix:///var/tmp/supervisor.sock ; use a unix:// URL for a unix socket ;serverurl=http://127.0.0.1:9001 ; use an http:// url to specify an inet socket ;username=chris ; should be same as http_username if set ;password=123 ; should be same as http_password if set ;prompt=mysupervisor ; cmd line prompt (default "supervisor") ; The below sample program section shows all possible program subsection values, ; create one or more 'real' program: sections to be able to control them under ; supervisor. ;[program:example] ;command=/bin/echo; the program (relative uses PATH, can take args) ;priority=999 ; the relative start priority (default 999) ;autostart=true ; start at supervisord start (default: true) ;autorestart=true ; retstart at unexpected quit (default: true) ;startsecs=10 ; number of secs prog must stay running (def. 10) ;startretries=3 ; max # of serial start failures (default 3) ;exitcodes=0,2 ; 'expected' exit codes for process (default 0,2) ;stopsignal=QUIT ; signal used to kill process (default TERM) ;stopwaitsecs=10 ; max num secs to wait before SIGKILL (default 10) ;user=chrism ; setuid to this UNIX account to run the program ;log_stdout=true ; if true, log program stdout (default true) ;log_stderr=true ; if true, log program stderr (def false) ;logfile=/var/log/supervisor.log ; child log path, use NONE for none; default AUTO ;logfile_maxbytes=1MB ; max # logfile bytes b4 rotation (default 50MB) ;logfile_backups=10 ; # of logfile backups (default 10)
“;”為註釋。各引數的含義都很明確。可以根據官方手冊結合實驗來進一步深入瞭解。重點說幾個[program:example]中的引數
;command=/bin/echo; supervisor啟動時將要開啟的程式。相對或絕對路徑均可。若是相對路徑則會從supervisord的$PATH變中查詢。命令可帶引數。 ;priority=999 指明程式啟動和關閉的順序。低優先順序表明程式啟動時較先啟動關閉時較後關閉。高優先順序表明程式啟動時啟動時較後啟動關閉時較先關閉。 ;autostart=true 是否隨supervisord啟動而啟動 ;autorestart=true 程式意外退出後是否自動重啟 ;startsecs=10 程式持續執行多久才認為是啟動成功 ;startretries=3 重啟失敗的連續重試次數 ;exitcodes=0,2 若autostart設定為unexpected且監控的程式並非因為supervisord停止而退出,那麼如果程式的退出碼不在exitcode列表中supervisord將重啟程式 ;stopsignal=QUIT 殺程式的訊號 ;stopwaitsecs=10 向程式發出stopsignal後等待OS向supervisord返回SIGCHILD 的時間。若超時則supervisord將使用SIGKILL殺程式
下面是一個使用supervisor監控的配置情況(配置中的其他預設內容在此省略)
[program:worker_for_summary] command=/home/op1/scripts/rabbitmqclient/worker_for_summary.py priority=1 log_stderr=true ; if true, log program stderr (def false) [program:worker_for_detail_all] command=/home/op1/scripts/rabbitmqclient/worker_for_detail_all.py priority=1 log_stderr=true ; if true, log program stderr (def false) [program:worker_for_detail_recent_list] command=/home/op1/scripts/rabbitmqclient/worker_for_detail_recent_list.py priority=1 log_stderr=true ; if true, log program stderr (def false) [program:worker_for_detail_recent_sset] command=/home/op1/scripts/rabbitmqclient/worker_for_detail_recent_sset.py priority=1 log_stderr=true ; if true, log program stderr (def false) [program:publisher_for_summary] command=/home/op1/scripts/rabbitmqclient/publisher_for_summary.py priority=999 log_stderr=true ; if true, log program stderr (def false) [program:publisher_for_summary_nt] command=/home/op1/scripts/rabbitmqclient/publisher_for_summary_nt.py priority=999 log_stderr=true ; if true, log program stderr (def false) [program:publisher_for_detail] command=/home/op1/scripts/rabbitmqclient/publisher_for_detail.py priority=999 log_stderr=true ; if true, log program stderr (def false) [program:publisher_for_detail_nt] command=/home/op1/scripts/rabbitmqclient/publisher_for_detail_nt.py priority=999 log_stderr=true ; if true, log program stderr (def false)
配置完成後啟動supervisord
[root@op-zhongkong ~]# /etc/init.d/supervisord start 可以看到配置的各個程式在後臺執行了起來。停掉某個程式後supervisor會馬上自動重啟該程式!!! [root@op-zhongkong ~]# supervisorctl supervisor> status publisher_for_detail RUNNING pid 27557, uptime 0:00:45 publisher_for_detail_nt RUNNING pid 27567, uptime 0:00:45 publisher_for_summary RUNNING pid 27566, uptime 0:00:45 publisher_for_summary_nt RUNNING pid 27568, uptime 0:00:45 worker_for_detail_all RUNNING pid 27581, uptime 0:00:45 worker_for_detail_recent RUNNING pid 27582, uptime 0:00:45 worker_for_summary RUNNING pid 27559, uptime 0:00:45
停止supervisor
[root@op-zhongkong ~]# /etc/init.d/supervisord stop
可通過help瞭解命令的更多用法:
[root@op-zhongkong ~]# supervisorctl supervisor> help Documented commands (type help <topic>): ======================================== EOF exit maintail quit restart start stop clear help open reload shutdown status tail supervisor> help stop stop <processname> Stop a process. stop <processname> <processname> Stop multiple processes stop all Stop all processes When all processes are stopped, they are stopped in reverse priority order (see config file) supervisor> help status status Get all process status info. status <name> Get status on a single process by name. status <name> <name> Get status on multiple named processes. #停止某個程式 supervisor> stop publisher_for_summary publisher_for_summary: stopped #檢視此時此刻的狀態 supervisor> status publisher_for_detail RUNNING pid 27557, uptime 0:05:41 publisher_for_detail_nt RUNNING pid 27567, uptime 0:05:41 publisher_for_summary STOPPED Feb 27 02:48 PM publisher_for_summary_nt RUNNING pid 27568, uptime 0:05:41 worker_for_detail_all RUNNING pid 27581, uptime 0:05:41 worker_for_detail_recent RUNNING pid 27582, uptime 0:05:41 worker_for_summary RUNNING pid 27559, uptime 0:05:41 #發現被supervisorctl停掉的程式不會被自動重啟 #開啟剛才停掉的程式 supervisor> start publisher_for_summary publisher_for_summary: started supervisor> status publisher_for_detail RUNNING pid 27557, uptime 0:08:02 publisher_for_detail_nt RUNNING pid 27567, uptime 0:08:02 publisher_for_summary RUNNING pid 3035, uptime 0:00:04 publisher_for_summary_nt RUNNING pid 27568, uptime 0:08:02 worker_for_detail_all RUNNING pid 27581, uptime 0:08:02 worker_for_detail_recent RUNNING pid 27582, uptime 0:08:02 worker_for_summary RUNNING pid 27559, uptime 0:08:02 #停掉所有程式 supervisor> stop all worker_for_detail_recent: stopped worker_for_detail_all: stopped publisher_for_summary_nt: stopped publisher_for_detail_nt: stopped publisher_for_summary: stopped worker_for_summary: stopped publisher_for_detail: stopped supervisor> status publisher_for_detail STOPPED Feb 27 02:51 PM publisher_for_detail_nt STOPPED Feb 27 02:51 PM publisher_for_summary STOPPED Feb 27 02:51 PM publisher_for_summary_nt STOPPED Feb 27 02:51 PM worker_for_detail_all STOPPED Feb 27 02:51 PM worker_for_detail_recent STOPPED Feb 27 02:51 PM worker_for_summary STOPPED Feb 27 02:51 PM #開啟所有程式 supervisor> start all publisher_for_detail: started worker_for_summary: started publisher_for_summary: started publisher_for_detail_nt: started publisher_for_summary_nt: started worker_for_detail_all: started worker_for_detail_recent: started supervisor> status publisher_for_detail RUNNING pid 5111, uptime 0:00:15 publisher_for_detail_nt RUNNING pid 5141, uptime 0:00:15 publisher_for_summary RUNNING pid 5135, uptime 0:00:15 publisher_for_summary_nt RUNNING pid 5147, uptime 0:00:15 worker_for_detail_all RUNNING pid 5153, uptime 0:00:15 worker_for_detail_recent RUNNING pid 5159, uptime 0:00:14 worker_for_summary RUNNING pid 5112, uptime 0:00:15
====================分享一個線上曾經用過的supervisor監控python程式的配置===================
[program:xcspam] command=/usr/bin/python /app/web/xcspam/bin/main.py --port=93%(process_num)02d process_name=%(program_name)s_%(process_num)02d numprocs=16 numprocs_start=1 directory=/app/web/xcspam user=work autostart=true autorestart=true stopsignal=QUIT stdout_logfile=/data/log/xcspam/xcspam.log stderr_logfile=/data/log/xcspam/xcspam_error.log stdout_logfile_maxbytes=0 stderr_logfile_maxbytes=0 environment=PYTHONPATH=/app/web/xcspam, KEVIN_ENV=production [program:report] command=/usr/bin/celery -A worker worker -Q report --loglevel=INFO directory=/app/web/xcspam/bin user=work autostart=true autorestart=true stopsignal=QUIT stdout_logfile=/data/log/xcspam/celery-report.log stderr_logfile=/data/log/xcspam/celery-report_error.log stdout_logfile_maxbytes=0 stderr_logfile_maxbytes=0 environment=PYTHONPATH=/app/web/xcspam, KEVIN_ENV=production [program:antiwater] command=/usr/bin/celery -A worker worker -Q antiwater --loglevel=INFO directory=/app/web/xcspam/bin user=work autostart=true autorestart=true stopsignal=QUIT stdout_logfile=/data/log/xcspam/celery-antiwater.log stderr_logfile=/data/log/xcspam/celery-antiwater_error.log stdout_logfile_maxbytes=0 stderr_logfile_maxbytes=0 environment=PYTHONPATH=/app/web/xcspam, KEVIN_ENV=production [program:celery-flower] command=/usr/bin/celery flower -A worker --address=10.31.51.232 --port=9330 directory=/app/web/xcspam/bin user=work autostart=true autorestart=true stopsignal=QUIT stdout_logfile=/data/log/xcspam/celery-flower.log stderr_logfile=/data/log/xcspam/celery-flower_error.log stdout_logfile_maxbytes=0 stderr_logfile_maxbytes=0 environment=PYTHONPATH=/app/web/xcspam, KEVIN_ENV=production
由於默默使用supervisorctl命令檢視監控的程式執行狀態是互動式的,所以自己寫了個簡單的指令碼命令superctl,可以直接檢視
[root@op-zhongkong ~]# cat /usr/local/bin/superctl /usr/bin/python /usr/local/bin/superctl -c /etc/supervisord.conf $1 $2 [root@op-zhongkong ~]# chmod 755 /usr/local/bin/superctl [root@op-zhongkong ~]# superctl status antiwater RUNNING pid 17172, uptime 0:21:23 celery-flower RUNNING pid 20507, uptime 0:18:52 report RUNNING pid 16752, uptime 0:21:35 xcspam:xcspam_01 RUNNING pid 14594, uptime 0:23:00 xcspam:xcspam_02 RUNNING pid 14526, uptime 0:23:01 xcspam:xcspam_03 RUNNING pid 14551, uptime 0:23:01 xcspam:xcspam_04 RUNNING pid 14641, uptime 0:22:59 xcspam:xcspam_05 RUNNING pid 14642, uptime 0:22:58 xcspam:xcspam_06 RUNNING pid 14608, uptime 0:22:59 xcspam:xcspam_07 RUNNING pid 14618, uptime 0:22:59 xcspam:xcspam_08 RUNNING pid 14674, uptime 0:22:58 xcspam:xcspam_09 RUNNING pid 14690, uptime 0:22:58 xcspam:xcspam_10 RUNNING pid 14498, uptime 0:23:02 xcspam:xcspam_11 RUNNING pid 14462, uptime 0:23:03 xcspam:xcspam_12 RUNNING pid 14463, uptime 0:23:03 xcspam:xcspam_13 RUNNING pid 14579, uptime 0:23:00 xcspam:xcspam_14 RUNNING pid 14749, uptime 0:22:58 xcspam:xcspam_15 RUNNING pid 14669, uptime 0:22:58 xcspam:xcspam_16 RUNNING pid 14512, uptime 0:23:02
====================再看下面一例====================
python程式程式一般都用supervisor進行管理 [root@localhost ~]# cp /etc/supervisord.conf /etc/supervisord.conf.bak [root@localhost ~]# vim /etc/supervisord.conf # 在檔案底部新增下面兩個python程式的管理配置 ......... [program:uwsgi] command=/usr/local/python3/bin/uwsgi /usr/local/nginx/conf/uwsgi.ini directory=/data/www/APPServer/ startsecs=0 stopwaitsecs=0 autostart=true autorestart=true [program:main] command=/usr/local/bin/main directory=/usr/local/bin/ startsecs=0 stopwaitsecs=0 autostart=true autorestart=true 重啟supervisor服務 [root@localhost ~]# /etc/init.d/supervisord restart Stopping supervisord: [ OK ] Starting supervisord: [ OK ] 檢視supervisor管理的兩個程式狀態 [root@localhost ~]# supervisorctl main RUNNING pid 16183, uptime 0:00:12 uwsgi RUNNING pid 19043, uptime 0:00:13 supervisor> status main RUNNING pid 16183, uptime 0:00:17 uwsgi RUNNING pid 19043, uptime 0:00:18 檢視管理的這兩程式的執行情況 [root@localhost ~]# ps -ef|grep main root 16183 16181 0 21:38 ? 00:00:00 /usr/local/bin/main root 16207 15953 0 21:42 pts/0 00:00:00 grep main [root@localhost ~]# ps -ef|grep uwsgi root 16595 16064 0 21:40 pts/0 00:00:00 grep --color=auto uwsgi root 19043 17056 0 21:44 ? 00:00:04 /usr/local/python3/bin/uwsgi /usr/local/nginx/conf/uwsgi.ini 重啟supervisor之後, 也就是將其管理的所有程式都重啟了 [root@localhost ~]# /etc/init.d/supervisord restart 也可以根據配置檔案, 指定某一個程式進行重啟 [root@localhost ~]# supervisorctl -c /etc/supervisord.conf restart main main: stopped main: started [root@localhost ~]# supervisorctl -c /etc/supervisord.conf restart uwsgi uwsgi: stopped uwsgi: started 或者是登入到supervisorctl裡面進行重啟,關閉操作等 [root@localhost ~]# supervisorctl main RUNNING pid 16286, uptime 0:03:58 uwsgi FATAL can't find command '/usr/local/python3/bin/uwsgi' supervisor> help Documented commands (type help <topic>): ======================================== EOF exit maintail quit restart start stop clear help open reload shutdown status tail supervisor> restart all supervisor> restart main supervisor> stop uwsgi supervisor> start uwsgi
====================常用的幾個程式管理配置====================
1) 用supervisor監控nginx注意事項 因為supervisor 監控的程式必須以非daemon 方式執行. 但是nginx預設不能以deamon的方式執行!!! 所以Nginx要用supervisor 管理需要的話, 就必須在nginx.conf配置檔案增加一行(新增的位置在events上面,屬於main) daemon off; 在nginx.conf檔案中新增deamon off,表示關閉守護程式方式,這樣nginx在終端輸入啟動命令會一直執行狀態,不會結束! 這樣就需要通過supervisor去啟動和管理nginx了. [root@kevin ~]# vim /usr/local/nginx/conf/nginx.conf user www; worker_processes 4; daemon off; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; events { worker_connections 65535; } 重啟nginx服務! 然後在supervisor中加入就行。 [root@kevin ~]# vim /etc/supervisord.conf ............ [program:nginx] command=/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf user=www 2) supervisor監控某個程式的描述資訊 [root@kevin ~]# vim /etc/supervisord.conf ............ [program:meta.txn.recover.on.error] command=/cas/bin/meta.txn.recover.on.error ; 被監控的程式路徑 numprocs=1 ; 啟動幾個程式 directory=/cas/bin ; 執行前要不要先cd到目錄去,一般不用 autostart=true ; 隨著supervisord的啟動而啟動 autorestart=true ; 自動重啟。。當然要選上了 startretries=10 ; 啟動失敗時的最多重試次數 exitcodes=0 ; 正常退出程式碼(是說退出程式碼是這個時就不再重啟了嗎?待確定) stopsignal=KILL ; 用來殺死程式的訊號 stopwaitsecs=10 ; 傳送SIGKILL前的等待時間 redirect_stderr=true ; 重定向stderr到stdout 3) 監控memcache的配置描述: [root@kevin ~]# vim /etc/supervisord.conf ............ [program:memcached] command=memcached -u root -m 1024 -l 0.0.0.0 -p 11211 process_name=%(program_name)s numprocs=1 ; 啟動幾個程式 autostart=true ; 隨著supervisord的啟動而啟動 autorestart=true ; 自動重啟。。當然要選上了 startretries=10 ; 啟動失敗時的最多重試次數 exitcodes=0 ; 正常退出程式碼(是說退出程式碼是這個時就不再重啟了嗎?待確定) stopsignal=KILL ; 用來殺死程式的訊號 stopwaitsecs=10 ; 傳送SIGKILL前的等待時間 redirect_stderr=true ; 重定向stderr到stdout 4) 用supervisor管理tomcat 使用 supervisord 監控管理的程式必須以 nodaemon 啟動,而 tomcat 的 startup.sh 指令碼是daemon方式的,如果不做修改的話,supervisord 會一直報錯。 兩種解決辦法: 第一種方法: 在 tomcat的啟動指令碼startup.sh 中, 將 exec "$PRGDIR"/"$EXECUTABLE" start "$@" 改為 exec "$PRGDIR"/"$EXECUTABLE" run "$@" [root@kevin ~]# vim /etc/supervisord.conf ............ [program:tomcat] command=/opt/tomcat/bin/startup.sh environment=JAVA_HOME="/usr/local/jdk/",JAVA_BIN="/usr/local/jdk/bin" directory=/opt/tomcat autostart = true autorestart=true redirect_stderr=true stdout_logfile=/dev/stdout stdout_logfile_maxbytes=10MB startsecs=5 priority=3 stopasgroup=true killasgroup=true 第二種方法: 不修改tomcat的啟動指令碼start.sh [root@kevin ~]# vim /etc/supervisord.conf ............ [program:tomcat] command=/opt/tomcat/bin/catalina.sh run environment=JAVA_HOME="/usr/local/jdk/",JAVA_BIN="/usr/local/jdk/bin" directory=/opt/tomcat autostart = true autorestart=true redirect_stderr=true stdout_logfile=/dev/stdout stdout_logfile_maxbytes=10MB startsecs=5 priority=3 stopasgroup=true killasgroup=true 5) 用supervisor管理mysql [root@kevin ~]# vim /etc/supervisord.conf ............ [supervisord] nodaemon=true [inet_http_server] port=0.0.0.0:9001 username=admin password=123 [program:mysql] command=/usr/bin/pidproxy /opt/mysql/data/mysqld.pid /usr/local/mysql/bin/mysqld_safe --defaults-file=/etc/my.cnf --basedir=/usr/local/mysql --datadir=/opt/mysql/data --plugin-dir=/usr/local/mysql/lib/plugin --user=root --log-error=/opt/mysql/data/mysqld.err --pid-file=/opt/mysql/data/mysqld.pid --socket=/tmp/mysql.sock --port=3306 2>&1 > /dev/null & redirect_stderr = true 6) supervisor 監控redis & mongodb [root@kevin ~]# vim /etc/supervisord.conf ............ [supervisord] nodaemon=true [program:redis] command=/usr/local/bin/redis-server /usr/local/etc/redis.conf autostart=true autorestart=true startsecs=3 [program:mongod] command=/usr/local/bin/mongod --dbpath /Users/weixuan/Database/mongodbdata autostart=true startsecs=3 autorestart=true 如果啟動supervisor服務時報錯如下 gave up: redis entered FATAL state, too many start retries too quickly 則解決辦法為: 修改redis.conf的daemonize為no