1、安装
yum install epel-release -y
yum install -y supervisor
2、启动
systemctl enable supervisord
systemctl start supervisord
systemctl status supervisord
3、配置
# 启用web界面
vi /etc/supervisord.conf
# 注释 [inet_http_server]模块
# 修改IP、用户名与密码
例如:
[inet_http_server]
# ip可以为0.0.0.0,表示本机任意ip
port=192.168.1.1:9001
username=admin
password=123456