yum安装supervisor遇到的问题
2019-01-08 本文已影响0人
一库塔里安
yum安装supervisor遇到的问题
一、problem making ssl connection
解决方法如下:
1.运行 vim /etc/yum.repos.d/epel.repo,修改配置,禁用出问题的yum源,将enable=1,改为enable=0
修改前 修改后2.安装ca-certificates包,运行yum install ca-certificates,导入CA证书
CA证书3.再度运行vim /etc/yum.repos.d/epel.repo,将enable=0,改回enable=1
修改4.运行下载命令,yum install supervisor,此时出现了新的错误,Another app is currently holding the yum lock,此时yum正在运行,被锁定了。有可能是在更新,尝试关掉yum。#rm -f /var/run/yum.pid,可以强制关掉yum。
出现错误5.安装supervisor成功。
成功6.文章引用
(1)yum [Errno 14] problem making ssl connection CentOs
https://blog.csdn.net/chao_1990/article/details/76959691
(2)yum提示Another app is currently holding the yum lock; waiting for it to exit...
https://blog.csdn.net/testcs_dn/article/details/48711805