1. 程式人生 > >記錄一下守護程序的管理命令

記錄一下守護程序的管理命令

supervisorctl 命令介紹

# 停止某一個程序,MyPriceApi修改為你自己裡的 [program:x] 裡的 x
supervisorctl stop MyPriceApi
# 啟動某個程序
supervisorctl start MyPriceApi
# 重啟某個程序
supervisorctl restart MyPriceApi
# 結束所有屬於名為 groupworker 這個分組的程序 (start,restart 同理)
supervisorctl stop groupworker:
# 結束 groupworker:name1 這個程序 (start,restart 同理)
supervisorctl stop groupworker:name1
# 停止全部程序,注:start、restart、stop 都不會載入最新的配置檔案
supervisorctl stop all
# 載入最新的配置檔案,停止原有程序並按新的配置啟動、管理所有程序
supervisorctl reload
# 根據最新的配置檔案,啟動新配置或有改動的程序,配置沒有改動的程序不會受影響而重啟
supervisorctl update