CentOS系统yum源使用报错:Error: Cannot retrieve repository metadata (repomd.xml) for repository: rpmforge.

前端之家收集整理的这篇文章主要介绍了CentOS系统yum源使用报错:Error: Cannot retrieve repository metadata (repomd.xml) for repository: rpmforge.前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

http://www.cnblogs.com/kevingrace/p/6252659.html

@H_404_4@

服务器上的yum突然不好使用,使用yum的时候报错如下:@H_404_4@ [root@bastion-IDC src]# yum list@H_404_4@ ......@H_404_4@ Could not retrieve mirrorlist http://mirrorlist.repoforge.org/el6/mirrors-rpmforge error was@H_404_4@ 14: PYCURL ERROR 7 - "couldn't connect to host"@H_404_4@ http://apt.sw.be/redhat/el6/en/x86_64/rpmforge/repodata/repomd.xml: [Errno 14]@H_404_4@ PYCURL ERROR 7 - "couldn't connect to host"@H_404_4@ Trying other mirror.@H_404_4@Error: Cannot retrieve repository Metadata (repomd.xml) for repository: rpmforge.@H_404_4@Please verify its path and try again

解决办法:(或者把/etc/yum.repos.d下的文件全部删除,然后将能正常使用yum的同类服务器的这个目录下的文件全部拷贝过来,然后yum clean all 和yum makecache 即可)@H_404_4@ 下载新的CentOS-Base.repo 到/etc/yum.repos.d/@H_404_4@ [root@bastion-IDC src]# cd /etc/yum.repos.d/@H_404_4@其实就是将yum源更改为阿里云的yum源,操作如下:

1)centos5.*的下载连接:@H_404_4@ [root@bastion-IDC yum.repos.d]# wget -O /etc/yum.repos.d/CentOS-Base.repohttp://mirrors.aliyun.com/repo/Centos-5.repo

2)centos6.*的下载连接:@H_404_4@ [root@bastion-IDC yum.repos.d]# wget -O /etc/yum.repos.d/CentOS-Base.repohttp://mirrors.aliyun.com/repo/Centos-6.repo

3)centos7.*的下载连接:@H_404_4@ [root@bastion-IDC yum.repos.d]# wget -O /etc/yum.repos.d/CentOS-Base.repohttp://mirrors.aliyun.com/repo/Centos-7.repo

后执行以下命令:@H_404_4@ [root@bastion-IDC yum.repos.d]# rpm -e rpmforge-release --nodeps@H_404_4@-------------------------------------------------------------------------------------------------------------@H_404_4@ 如果报错:@H_404_4@error: package rpmforge-release is not installed

解决办法:安装这个源@H_404_4@ 下载地址:https://pan.baidu.com/s/1pKBtm11@H_404_4@ 提取密码:erte@H_404_4@ [root@bastion-IDC yum.repos.d]# rpm -ivh rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm@H_404_4@-------------------------------------------------------------------------------------------------------------

[root@bastion-IDC yum.repos.d]# yum clean all@H_404_4@ [root@bastion-IDC yum.repos.d]# yum makecache //将服务器上的软件包信息缓存到本地,以提高搜索安装软件的速度@H_404_4@ [root@bastion-IDC yum.repos.d]# yum update

最后再次使用yum就ok了 [root@bastion-IDC yum.repos.d]# yum list

猜你在找的CentOS相关文章