centos7 yum软件仓库停用问题解决

首先这只是一种临时解决方案,centos7已经停止维护了,软件仓库2024年7月已经停了,不建议使用了,建议切换到rockyos9,rockyos9 里面包管理工具是dnf ,dnf 目前是兼容yum命令的,升级rockos除了软件数据的迁移,使用习惯几乎完全一样。

解决方案如下:


#打开仓库文件目录
cd /etc/yum.repos.d

#删除centos相关的仓库,自己导入的仓库劲量保留
rm -rf CentOS*

#安装2个阿里云的仓库CentOS-Base.repo,/epel.repo
wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
wget -O /etc/yum.repos.d/epel.repo https://mirrors.aliyun.com/repo/epel-7.repo

#清除缓存并且重建
yum clean all 
yum makecache
yum makecache fast


#测试可用
yum info nginx


#出现以下信息base: mirrors.aliyun.com,说明使用的是阿里云的源
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: mirrors.aliyun.com
 * extras: mirrors.aliyun.com
 * updates: mirrors.aliyun.com
Available Packages
Name        : nginx
Arch        : x86_64
Epoch       : 1
Version     : 1.20.1
Release     : 10.el7
Size        : 588 k
Repo        : epel/x86_64
Summary     : A high performance web server and reverse proxy server
URL         : https://nginx.org
License     : BSD
Description : Nginx is a web server and a reverse proxy server for HTTP, SMTP, POP3 and
            : IMAP protocols, with a strong focus on high concurrency, performance and low
            : memory usage.

posted on 2024-12-02 17:35  zhangyukun  阅读(3)  评论(0编辑  收藏  举报

导航