yum安装时报以下错误,那么就可以修改yum的镜像源地址:
Gitlab CE Repository 118 B/s | 159 B 00:01
Errors during downloading metadata for repository 'gitlab-ce':
- Status code: 404 for https://mirrors.cloud.tencent.com/gitlab-ce/yum/el9/repodata/repomd.xml (IP: xxx.xx.xx.xxx)
错误:为仓库 'gitlab-ce' 下载元数据失败 : Cannot download repomd.xml: Cannot download repodata/repomd.xml: All mirrors were tried
1、备份系统自带yum源配置文件
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
2、进入 /etc/yum.repos.d
cd /etc/yum.repos.d
3、删除文件
rm -f *.repo
4、设置
curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-vault-8.5.2111.repo
5、缓存
yum clean all
yum makecache
6、更新系统
yum -y update