Linux

使用 init 啟動主管失敗

  • March 22, 2017

我在我的 debian 7 安裝中使用 pip 安裝了主管。然後我抓住了這個文件並將它移到了這裡:/etc/init.d/supervisord

https://github.com/Supervisor/initscripts/blob/master/debian-norrgard

然後我跑了:

chmod +x /etc/init.d/supervisord
update-rc.d supervisord defaults

但是,當我執行命令 supervisord 時,程序啟動正常,但是當我執行時:

service supervisord start

我沒有收到任何錯誤或消息,但主管實際上並沒有啟動。我怎樣才能知道發生了什麼以及為什麼它沒有開始?

我在我的 debian 7 安裝中使用 pip 安裝了主管。

你為什麼要去做那樣的事情?!?:)

在 debian 的 apt repo 中有一個非常好的主管包。為什麼不使用它?該軟體包已經過嚴格審查,並被配置為與您的特定 linux 發行版和版本無縫協作——這些都不需要。

linuxing 的一般規則是:始終使用作業系統包倉庫中的包,除非另有要求。

引用自:https://serverfault.com/questions/582244