Centos7在yum当中遇到Could not resolve host: mirrorlist.centos.org解决方案
CentOS7执行yum命令遇到“Could not resolve host: mirrorlist.centos.org; 未知的错误”
原因
CentOS 7 官方支持已于 2024 年 6 月 30 日结束,其官方仓库停止维护,原指向mirrorlist.centos.org的镜像地址无法找到所需文件,导致yum命令执行时无法获取元数据,出现该报错
解决方案
若系统未安装 wget,可先手动下载文件,通过 scp 等方式上传到服务器对应目录;或用 curl 命令
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
清理并重建 yum 缓存
yum clean all
yum makecache fast