因为yum 没有源,所以用pip的安装方式。
安装supervisor
pip install supervisor
安装后的执行文件会默认安装在pip的执行文件目录,我的pip目录在/soft/python3.6/bin/,所以supervisor也安装在这个目录。
进入这个目录,会看到新生成的三个文件,
执行命令,生成配置文件
./echo_supervisord_conf > supervisored.conf
设置配置文件
mkdir -p /etc/supervisor/conf.d
cp supervisored.conf /etc/supervisor/
修改配置文件
[include]
files = conf.d/*.conf
以后的进程配置文件都要放在这个文件夹
创建socket空文件
vim /tmp/supervisor.sock
:wq
启动supervisor
./supervisord -c /etc/supervisor/supervisored.conf
打开交互客户端
./supervisorctl -c /etc/supervisor/supervisored.conf
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。