errno 14 无法打开/读取文件 ///repodata/repomd.xml

errno 14 无法打开/读取文件 ///repodata/repomd.xml

我在 RHEL 6.4 上配置了一个 Yum 存储库。通过使用 RHEL 自定义存储库。我已在另一台计算机上注册了该存储库,但该计算机上的软件包安装失败。以下是我遇到的错误。

file:///Repo/Packages/repodata/repomd.xml: [Errno 14] Could not open/read file:///Repo/Packages/repodata/repomd.xml
Trying other mirror.
Error: Cannot retrieve repository metadata (repomd.xml) for repository: testrt. Please verify its path and try again

可能是什么问题呢?

答案1

我在 RHEL 6.7 上遇到了同样的问题。问题是有一个指向 /mnt/ 的本地 DVD 存储库,我实际上并不想让它检查,因为我希望它在远程存储库上执行查找。

我按照以下步骤修复了它:

  • cd /etc/yum.repos.d/
  • grep /Repo/Packages * -n
  • 禁用上一个 grep 命令检索到的 repos(使用 vi 或您喜欢的文本编辑器编辑它们并设置 enabled=0)
  • 尝试再次运行你的命令

希望能帮助到你,

问候

相关内容