No match for argument: supervisorError: Unable to find a match: supervisor
今天在centos stream 9上安装supervisor 报错
[root@iZbp16l5g5ydljpl9m1ap4Z ~]# yum -y install supervisor
Last metadata expiration check: 0:03:44 ago on Fri 07 Apr 2023 09:18:21 AM CST.
No match for argument: supervisor
Error: Unable to find a match: supervisor
使用如下命令解决
# 启用epel库
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo# 安装supervisor
yum install -y supervisor# 开机自启
sudo systemctl enable --now supervisord