centos8解决"Failed to download metadata for repo 'AppStream'"
今天想安装的软件,yum的时候直接出现以下错误:
Errors during downloading metadata for repository 'AppStream':
- Status code: 404 for https://repo.huaweicloud.com/centos/8/AppStream/x86_64/os/repodata/repomd.xml (IP: 61.172.237.163)
Error: Failed to download metadata for repo 'AppStream': Cannot download repomd.xml: Cannot download repodata/repomd.xml: All mirrors were tried
系统:centos8(64位)
解决办法:
1.进入/etc/yum.repos.d文件夹
cd /etc/yum.repos.d
2.备份所有源文件
mkdir bak
cp *.repo bak
3.对源文件内容进行替换
sed -i 's/$releasever/8-stream/' CentOS*repo
4.清空yum缓存文件
yum clean all
好了,现在再来重新安装就没问题了.
评论: