centos7安装supervisor

使用yum命令安装(推荐)

# yum install epel-release
# yum install -y supervisor
# systemctl enable supervisord # 开机自启动
# systemctl start supervisord # 启动supervisord服务

# systemctl status supervisord # 查看supervisord服务状态
# ps -ef|grep supervisord # 查看是否存在supervisord进程
原文地址:https://www.cnblogs.com/yuzhoushenqi/p/11392617.html