centos更换镜像源

下载失败

java 复制代码
[root@192 opt]# sudo yum install -y yum-utils
已加载插件:fastestmirror, langpacks
Loading mirror speeds from cached hostfile
Could not retrieve mirrorlist http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=os&infra=stock error was
14: curl#6 - "Could not resolve host: mirrorlist.centos.org; 未知的错误"


 One of the configured repositories failed (未知),
 and yum doesn't have enough cached data to continue. At this point the only
 safe thing yum can do is fail. There are a few ways to work "fix" this:

     1. Contact the upstream for the repository and get them to fix the problem.

     2. Reconfigure the baseurl/etc. for the repository, to point to a working
        upstream. This is most often useful if you are using a newer
        distribution release than is supported by the repository (and the
        packages for the previous distribution release still work).

     3. Run the command with the repository temporarily disabled

这是什么情况

你现在正是在使用 yum 镜像源。


简单回答

  • 安装这个包需要镜像源吗?需要 。因为 yum-utils 这个软件包并不在本地,需要从远程的 yum 仓库(镜像源)下载安装。

  • 你现在在干什么? → 你正在通过 yum 命令从镜像源下载并安装 yum-utils

打个比方

把 yum 想象成 手机应用商店

场景 类比
yum install yum-utils 你在应用商店搜索并下载一个 App
镜像源(仓库) 应用商店的服务器,存放着所有 App 的安装包
报错 Could not resolve host 你的手机连不上应用商店的服务器(网络或域名解析问题)

所以,没有镜像源,yum 就无法下载任何软件包 ,包括 yum-utils

你的情况

text

复制代码
你 → 执行 yum install → 访问镜像源服务器 → 连不上(DNS解析失败)→ 报错

你正在使用的镜像源是 CentOS 官方源(mirrorlist.centos.org),但因为:

  • DNS 没配好,或者

  • 官方源已停服(CentOS 7 已 EOL)

所以下载失败了。


结论

你需要先修好镜像源 (比如换成阿里云源),然后才能成功安装 yum-utils。修好后,yum 会从新的镜像源下载这个包,就成功了。

更换阿里云 vault

这是 CentOS 7 已停服,官方源 mirrorlist.centos.org 失效了。先改成可用镜像源,再继续装。

java 复制代码
mkdir -p /etc/yum.repos.d/backup
mv /etc/yum.repos.d/*.repo /etc/yum.repos.d/backup/

cat > /etc/yum.repos.d/CentOS-Base.repo <<'EOF'
[base]
name=CentOS-7 - Base
baseurl=https://mirrors.aliyun.com/centos-vault/7.9.2009/os/$basearch/
gpgcheck=0
enabled=1

[updates]
name=CentOS-7 - Updates
baseurl=https://mirrors.aliyun.com/centos-vault/7.9.2009/updates/$basearch/
gpgcheck=0
enabled=1

[extras]
name=CentOS-7 - Extras
baseurl=https://mirrors.aliyun.com/centos-vault/7.9.2009/extras/$basearch/
gpgcheck=0
enabled=1
EOF

yum clean all
yum makecache
相关推荐
j7~1 小时前
【Linux】二十七.线程篇四《Linux多线程编程:线程互斥(互斥量的底层到封装)、线程安全和冲入、死锁》---详解
linux·开发语言·c++·线程安全·死锁·线程互斥·重入
IKUN家族1 小时前
Spring MVC(三)
运维·服务器·spring boot·spring·servlet·java-ee
yunwei371 小时前
eBPF 入门实践教程第五十篇:使用 TCX Link 实现可组合的流量控制
linux·云原生·开源
Leon-Ning Liu2 小时前
【真实经验分享】ORA-12516 排查实录:共享服务器模式下 SHARED_SERVER_SESSIONS 不足引发的监听故障
运维·服务器·oracle
2401_827501282 小时前
Linux系统移植
linux·arm开发·单片机
东方护航数据恢复(深圳)2 小时前
服务器硬盘黄灯/红灯故障排查与处理命令全指南_东方护航数据恢复深圳店
运维·服务器·chrome
爱码少年2 小时前
SSH密钥登录完整流程与原理详解
运维·ssh
2601_965798472 小时前
Build a Consulting Site in 2026: Nifty Theme Practical Review
java·linux·数据库
加油码2 小时前
共享内存详解:原理、系统调用与高性能进程间通信
linux·c语言·c++