Centos 7安装Supervisord
1.安装Supervisord
如果用的是阿里云的CentOS7会提示找不到supervisor,
则yum install epel-release先安装EPEL源
yum -y install epel-release
yum -y install supervisor
2.设置开启自启
systemctl enable supervisord.service
3.启动supervisord
systemctl start supervisord.service
查看状态
systemctl status supervisord.service
Supervisord管理命令
systemctl stop supervisord.service
systemctl start supervisord.service
systemctl status supervisord.service
systemctl restart supervisord.service