Loading
0

解决Centos7.x报错Could not resolve host: mirrorlist.centos.org方法。
被墙跳转TG:@qianhenetwork QQ 851617266

301免备案跳转微信公众号
腾讯云服务器大促销。
华为服务器
前言:业务一直跑在Centos7.9中的,今天安装软件提示“14: curl#6 - "Could not resolve host: mirrorlist.centos.org; Unknown error"”看报错是无法解析mirrorlist.centos.org 这个域名,参考本文处理好了。
原因:Centos7.x系统在6月30日生命周期终止(EOL) 终止了,官方不在维护yum源了。
报错如图。


解决方法:
好在官方并没有直接停止服务,而是将源中的文件都迁移到了vault.centos.org这个地址上,将yum源中的 “mirrorlist.centos.org”替换为“vault.centos.org”即可解决。
替换方法:
1、先备份原来yum文件,以防止改错还可以还原。

cp /etc/yum.repos.d   /etc/yum.repos.d_bak

2、执行如下命令批量替换所有yum中的地址:

sed -i s/mirror.centos.org/vault.centos.org/g /etc/yum.repos.d/*.repo
sed -i s/^#.*baseurl=http/baseurl=http/g /etc/yum.repos.d/*.repo
sed -i s/^mirrorlist=http/#mirrorlist=http/g /etc/yum.repos.d/*.repo

3、更新yum换成即可

yum makecache


 
301免备案跳转微信公众号
华为服务器
腾讯云服务器大促销。

声明:站长码字很辛苦啊,转载时请保留本声明及附带文章链接:https://www.zfcdn.xyz/showinfo-3-36349-0.html
亲爱的:被墙域名跳转TG:@qianhenetwork QQ:851617266,可否收藏+评论+分享呢?
上一篇:解决:Can't open the mysql.plugin table. Please run mysql_upgrade to create it.
下一篇:Centos7.x yum方式升级安装gcc7.3/gcc8.3/gcc9.3/gcc10.2/gcc11.2方法