centos7 已于2024年6月30日停止维护,官网yum源域名mirrorlist.centos.org已经停止解析,此时新装的 centos7 系统无法系统升级和补丁安装,此时可以使用国内镜像源进行部分补丁和软件安装
1、更换阿里云镜像YUM源
备份原yum源的配置
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
下载阿里云 Centos-7.repo 文件
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
清除及生成缓存
# 清除yum缓存
yum clean all
# 缓存阿里云源
yum makecache
# 列出
yum list
2、更换163镜像YUM源
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.163.com/.help/CentOS7-Base-163.repo
3、更换腾讯云镜像YUM源
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.cloud.tencent.com/repo/centos7_base.repo
更换好之后,可以测试安装命令:
yum install wget -y