CentOS 8.x系统停止维护yum无法使用解决方法
2022-03-20 23:08:10
691次阅读
0个评论
2022年1月1日CentOS8已经不在维护了,随之自带的yum源也无法使用,yum安装会报错:Repository AppStream is listed more than once in the configuration Repository extras is listed more than once in the configuration 或者为 repo 'AppStream' 下载元数据失败 错误:为 repo 'AppStream' 下载元数据失败,完整的报错可参考如下信息,本文将介绍如何更改centos8的yum源达到使用的目的。
解决方法:可参考如下方法更换yum源
如果使用的是阿里云的服务器,可参考教程 https://blog.tag.gg/showinfo-3-36184-0.html 操作
1、将/etc/yum.repos.d目录改名备份,并重新创建新的/etc/yum.repos.d目录
mv /etc/yum.repos.d /etc/yum.repos.d.backup
mkdir /etc/yum.repos.d
2、执行如下命令下载阿里云公共的yum镜像文件(wget及crul方式选择其中一种即可)
wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-vault-8.5.2111.repo
若服务器提示没安装wget命令,可执行如下命令下载yum源
curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-vault-8.5.2111.repo
3、执行如下命令重新创建缓存
yum clean all && yum makecache
若执行没有报错则表示正常,成功的提示可参考如下:
[root@A ~]# yum clean all && yum makecache
0 文件已删除
CentOS-8.5.2111 - Base - mirrors.aliyun.com 4.4 MB/s | 4.6 MB 00:01
CentOS-8.5.2111 - Extras - mirrors.aliyun.com 26 kB/s | 10 kB 00:00
CentOS-8.5.2111 - AppStream - mirrors.aliyun.com 4.7 MB/s | 8.4 MB 00:01
元数据缓存已建立。
随后可测试yum安装软件看是否正常。
00
- 0回答
- 1粉丝
- 0关注
相关话题
- 阿里云CentOS 8.x系统yum报404的解决方法(Errors during downloading metadata for repository 'appstream':
- CentOS8 安装 MySQL8.0(yum)
- Centos8安装MySQL5.7
- Centos8卸载MySQL5.7
- 使用commons-vfs监听文件系统
- jQuery Colorpicker Spectrum使用方法
- 解决一个意外错误使您无法删除该文件
- Centos8下mysql 8.0忘记密码后重置密码
- vue 3 的watchEffect 使用方法
- 解决安卓浏览器文本无法垂直居中的问题
- RHEL7、CentOS7 下使用 Firewall 封IP
- Elasticsearch 不停止服务更新索引别名
- 解决jenkins tomcat热部署,任务线程重复启动的方法
- 使用Java8根据属性值对List去重
- vue使用provide/inject方式解决刷新当前页面问题