您好,登錄后才能下訂單哦!
這篇文章給大家介紹ubuntu 中怎么配置supervisor,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
1,安裝python,supervisor
# apt-get install python supervisor
2,配置supervisor
# cat /etc/supervisor/conf.d/mini_breakpad.conf
[program:minibreakpad] //進(jìn)程名稱 directory = /root/error/mini-breakpad-server //程序的啟動目錄 command = node lib/app.js //啟動命令 autostart = true //在supervisord 啟動的時候也自動啟動 startsecs = 5 //啟動5秒后沒有退出就當(dāng)做已經(jīng)正常啟動 autorestart = true //程序異常退出后自動重啟 startretries = 5 //啟動失敗自動重試次數(shù) 5 user = root //用哪個用戶啟動 redirect_stderr = true //把 stderr 重定向到 stdout 默認(rèn) false,如果是false就不需要設(shè)置下面的log配置 stdout_logfile_maxbytes = 20MB //stdout 日志文件大小,默認(rèn)50MB stdout_logfile_backups = 20 //stdout 日志文件備份數(shù) //stdout 日志文件,需要注意當(dāng)指定目錄不存在時無法正常啟動,所以需要手動創(chuàng)建目錄(supervisord 會自動創(chuàng)建日志文件) stdout_logfile = /root/error/mini-breakpad-server/logs/stdout.log
3,重啟supervisor,查看狀態(tài)
# /etc/init.d/supervisor restart # supervisorctl status minibreakpad RUNNING pid 17655, uptime 2:57:07
注意:如果在后臺運行的程序,有守護(hù)進(jìn)程的,就不要用supervisor,用了nohup也不行。會報以下錯誤
# supervisorctl status minibreakpad FATAL Exited too quickly (process log may have details)
關(guān)于ubuntu 中怎么配置supervisor就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。