14: curl#6 - “Could not resolve host: mirrorlist.centos.org; 未知的错误“

server/2024/12/28 17:47:20/

出现这个错误是因为使用的 CentOS 7 仓库已经被归档,当前的镜像地址无法找到所需的文件。CentOS 7 的官方支持已经结束,部分仓库已被移至归档库。这导致了你的 yum 命令无法找到所需的元数据文件。CentOS 7 的官方仓库在 2024 年 6 月 30 日之后已经停止维护。因此,使用最新的 CentOS 7 官方仓库可能会遇到问题。

centos7在2024年6月30日,生命周期结束,官方不再进行支持维护,官方的YUM源也下线了,下线的方式是使yum的域名不解析。所以现在需要配置国内的YUM源。

解决方案

第一步:修改仓库

进入/etc/yum.repos.d目录下找到 CentOS-Base.repo
进入目录:

cd /etc/yum.repos.d

在这里插入图片描述

然后执行

cp  CentOS-Base.repo   CentOS-Base.repo.backup
vi CentOS-Base.repo

进去之后改成

# CentOS-Base.repo
#
# The mirror system uses the connecting IP address of the client and the
# update status of each mirror to pick mirrors that are updated to and
# geographically close to the client.  You should use this for CentOS updates
# unless you are manually picking other mirrors.
#
# If the mirrorlist= does not work for you, as a fall back you can try the 
# remarked out baseurl= line instead.
#
#[base]
name=CentOS-$releasever - Base
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os&infra=$infra
#baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/
#baseurl=http://vault.centos.org/7.9.2009/x86_64/os/
baseurl=http://vault.centos.org/7.9.2009/os/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7#released updates 
[updates]
name=CentOS-$releasever - Updates
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates&infra=$infra
#baseurl=http://mirror.centos.org/centos/$releasever/updates/$basearch/
#baseurl=http://vault.centos.org/7.9.2009/x86_64/os/
baseurl=http://vault.centos.org/7.9.2009/updates/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7#additional packages that may be useful
[extras]
name=CentOS-$releasever - Extras
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=extras&infra=$infra
#$baseurl=http://mirror.centos.org/centos/$releasever/extras/$basearch/
#baseurl=http://vault.centos.org/7.9.2009/x86_64/os/
baseurl=http://vault.centos.org/7.9.2009/extras/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7#additional packages that extend functionality of existing packages
[centosplus]
name=CentOS-$releasever - Plus
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=centosplus&infra=$infra
#baseurl=http://mirror.centos.org/centos/$releasever/centosplus/$basearch/
#baseurl=http://vault.centos.org/7.9.2009/x86_64/os/
baseurl=http://vault.centos.org/7.9.2009/centosplus/$basearch/
gpgcheck=1
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

保存之后再执行

sudo yum clean all
sudo yum makecache

加载后

在这里插入图片描述



PS:其实缓存后就可以执行以下语句了:

sudo yum install -y yum-utils device-mapper-persistent-data lvm2

在这里插入图片描述
上下两个截图是一起的。
在这里插入图片描述

第二步:配置成阿里云镜像
curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo

然后执行

 cat CentOS-Base.repo

在这里插入图片描述

最后执行

sudo yum clean all
sudo yum makecache

end 完结。


http://www.ppmy.cn/server/153973.html

相关文章

.net core 的字符串处理

Python基础 引言 Python是一种广泛使用的高级编程语言,由Guido van Rossum于1991年首次发布。其设计理念强调代码的可读性和简洁性,使得Python成为初学者和专业开发者的热门选择。Python支持多种编程范式,包括面向对象、过程式和函数式编程…

Dynamo:Amazon 的高可用键值仓储

大家觉得有意义和帮助记得及时关注和点赞!!! Dynamo 是 Amazon 的高可用分布式键值存储(key/value storage)系统。这篇论文发表 的时候(2007)它还只是一个内部服务,现在(改名为 DynamoDB)已经发…

深度学习序列预测实操教程

深度学习序列预测实操教程 引言 随着人工智能技术的迅猛发展,深度学习在各个领域得到了广泛的应用。其中,序列预测问题是一个非常重要且具有挑战性的课题,它涉及到时间序列、自然语言处理(NLP)、语音识别等多个方面。…

蓝桥杯速成教程{三}(adc,i2c,uart)

目录 一、adc 原理图​编辑引脚配置 Adc通道使能配置 实例测试 ​编辑效果显示 案例程序 badc 按键相关函数 测量频率占空比 main 按键的过程 显示界面的过程 二、IIC通信-eeprom 原理图AT24C02 引脚配置 不可用状态,用的软件IIC 官方库移植 At24c02手册 ​编辑…

Docker和Kubernetes(K8s)区别

目录 1. Docker Docker 的核心概念: Docker 的功能: Docker 常见使用场景: 2. Kubernetes (K8s) Kubernetes 的核心概念: Kubernetes 的功能: Kubernetes 常见使用场景: 3.Docker 和 Kubernetes 的…

识别后端返回的字符串中携带的空格 以及换行 要在前端展示 v-html

1.直接使用v-html <view v-html"formattedIssueDesc"></view> 2.由于直接使用 v-html 指令可能不会将 \n 解释为换行&#xff0c;所以就有第二种 <template><view v-html"formattedIssueDesc"></view> </template&…

重生之我在异世界学编程之C语言:数据在内存中的存储篇(上)

大家好&#xff0c;这里是小编的博客频道 小编的博客&#xff1a;就爱学编程 很高兴在CSDN这个大家庭与大家相识&#xff0c;希望能在这里与大家共同进步&#xff0c;共同收获更好的自己&#xff01;&#xff01;&#xff01; 目录 引言正文一、数据类型介绍1.内置类型2.自定义…

机器人角度参考方式

机器人的角度可以根据需求和系统设计来决定。通常情况下&#xff0c;机器人角度&#xff08;如航向角或偏航角&#xff09;有两种常见的参考方式&#xff1a; 参考开机时的 0&#xff1a;这是最常见的方式&#xff0c;机器人在开机时会将当前的方向作为 0&#xff08;即参考方向…