知識點049-supervisor

supervisor安裝

cd /usr/local/src
wget https://pypi.python.org/packages/7b/17/88adf8cb25f80e2bc0d18e094fcd7ab300632ea00b601cbbbb84c2419eae/supervisor-3.3.2.tar.gz
tar -zxvf supervisor-3.3.2.tar.gz
cd supervisor-3.3.2
python setup.py install #本地python版本爲python2.7
# python2.7 setup.py install #本地python版本爲python3以上

supervisor的功能是對進程的拉取以及監聽

生成配置文件
echo_supervisord_conf > /etc/supervisord.conf
  • 啓動 supervisord -c /etc/supervisord.conf

經常使用的啓停命令

sudo service supervisor stop 中止supervisor服務
sudo service supervisor start 啓動supervisor服務
supervisorctl shutdown #關閉全部任務
supervisorctl stop|start program_name #啓動或中止服務
supervisorctl status #查看全部任務狀態
supervisorctl -c supervisor.xxxx.conf status all #查看某服務的全部狀態
相關文章
相關標籤/搜索