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
相关推荐
inkuu5 分钟前
WSL启动慢问题分析与修复
linux
snow@li18 分钟前
服务器运维:K3S 下 Jenkins ↔ GitLab 的 CI/CD 闭环 / 访问成功
运维·gitlab·jenkins
志栋智能1 小时前
超自动化运维与DevOps的深度融合
运维·网络·人工智能·安全·自动化
JJJennie7772 小时前
MAI Gateway技术揭秘:大模型网关能做什么?从原理到落地
linux·服务器·网络·ai网关
风哥2号4 小时前
数据库教程FGMT02‑生产环境Linux+Oracle19c安装配置与项目实战
linux·数据库·ffmpeg
wuminyu7 小时前
Kafka中sendfile与mmap实现机制解析
java·linux·c语言·jvm·c++
新时代牛马8 小时前
嵌入式网络完整篇:从LwIP/以太网驱动到 Linux netdev 与排障
linux·网络·php
猿与禅8 小时前
Linux(Ubuntu)入门到实战:系统管理、常用命令与权限体系完整指南
linux·ubuntu·apt·进程管理·系统运维·用户权限·vi/vim
前端世界8 小时前
Linux服务器实战:NTP时间同步、SELinux权限与rsyslog日志管理,一次搞懂三大运维问题
linux·运维·服务器
Android系统攻城狮8 小时前
Linux Gstreamer深度解析之gst_audio_converter_new调用流程与实战(二十)
linux·运维·服务器·gstreamer音视频·音视频进阶