Cannot retrieve repository metadata (repomd.xml) for repository: local. Please verify its path and t

Centos6 

使用yum安装时报错

Cannot retrieve repository metadata (repomd.xml) for repository: local. Please verify its path and try again

查看/etc/yum.repos.d/中的.repo文件

找到name=local的repo文件

[local]
name=local

查看其中的baseurl

baseurl=ftp://ftp.redhat.com/pub/redhat/linux/enterprise/$releasever/en/os/SRPMS/

因为其中的yum系统中自带的变量$releasever已经不能找到ftp的位置所以报错

修改$releasever=6Server

//将ftp://ftp.redhat.com/pub/redhat/linux/enterprise/6Server/en/os/SRPMS/拷贝到浏览器地址栏中能看到ftp资源

//就证明地址正确

保存,再运行以下命令更新yum就可以了

yum clean all

yum makecache


追加:

发现运行 yum install 时报错

file:///mnt/cdrom/repodata/repomd.xml: [Errno 14] Could not open/read file:///mnt/cdrom/repodata/repomd.xml

查看源文件中有

baseurl=file:///mnt/cdrom

发现这个本地源没有用,注释掉以后保存

#[local]
#name=local
#baseurl=file:///mnt/cdrom
#enabled=1
#gpgcheck=0

执行

yum clean all

yum makecache

没有问题

安装成功!



你可能感兴趣的:(linux)