supervisor
···
yum install -y epel-release
yum install -y supervisor
or Ubuntu
apt install supervisor
···
···
設(shè)置開機(jī)啟動
$ systemctl enable supervisor.service
啟動服務(wù)
$ systemctl start supervisor.service
停止服務(wù)
$ systemctl stop supervisor.service
停止服務(wù)
$ systemctl restart supervisor.service
重新加載修改的配置文件
$ sudo systemctl daemon-reload
查看狀態(tài)
$ systemctl status supervisor.service
or
$ sudo sdske可journalctl -u supervisor.service -f
···
supervisorctl 任務(wù) 啟停
supervisorctl update #更新所有
supervisorctl update test #更新test服務(wù)
supervisorctl restart #重啟所有
supervisorctl restart test #重啟test服務(wù)
supervisorctl restart test:* #批量重啟test開頭服務(wù)
supervisorctl restart test test1 #重啟test、test1服務(wù)
supervisorctl stop #停止所有
supervisorctl stop test #停止test服務(wù)
supervisorctl stop test:* #批量停止test開頭服務(wù)
supervisorctl stop test test1 #停止test、test1服務(wù)
supervisorctl tail -f test stdout #查看test服務(wù)標(biāo)準(zhǔn)輸出日志