当前位置:   article > 正文

解决CentOS执行yum命令错误:Error: Cannot find a valid baseurl for repo: base_loaded plugins: fastestmirror setting up install p

loaded plugins: fastestmirror setting up install process loading mirror spee

参考网页:http://www.webkaka.com/tutorial/server/2021/040227/

今天在CentOS系统执行yum命令时出现错误提示:

Loaded plugins: fastestmirror
Setting up Install Process
Loading mirror speeds from cached hostfile
YumRepo Error: All mirror URLs are not using ftp, http(s) or file.
  Eg. Invalid release/repo/arch combination/
removing mirrorlist with no valid mirrors: /var/cache/yum/x86_64/6/base/mirrorlist.txt
Error: Cannot find a valid baseurl for repo: base
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

错误信息大概意思是缓存的镜像文件里的URL无效了,所以无法下载程序文件来安装。

Cannot find a valid baseurl for repo base

百度答案不少,但都不能解决问题,最后还是在谷歌找到了解决方法,其实也很简单,只需依次执行如下三行代码:

echo "http://vault.centos.org/5.11/os/x86_64/" > /var/cache/yum/x86_64/6/base/mirrorlist.txt
echo "http://vault.centos.org/5.11/extras/x86_64/" > /var/cache/yum/x86_64/6/extras/mirrorlist.txt
echo "http://vault.centos.org/5.11/updates/x86_64/" > /var/cache/yum/x86_64/6/updates/mirrorlist.txt
  • 1
  • 2
  • 3

注意:

1、Centos系统版本号

代码中 5.11 是CentOS版本号,要改为你服务器安装的CentOS的版本号,CentOS系统的版本号用此命令查看:

cat /etc/redhat-release
  • 1

该CentOS系统版本号是6.6,所以要把代码里的 5.11 改为 6.6。

2、mirrorlist.txt路径

代码中的 mirrorlist.txt 路径要改为错误提示中给出的路径,比如看到下面的提示:

removing mirrorlist with no valid mirrors: /var/cache/yum/x86_64/6/base/mirrorlist.txt

mirrorlist.txt 路径便是:

/var/cache/yum/x86_64/6/base/mirrorlist.txt

知道这个后,我们依次执行前面提到的三行代码时,把路径的base改为extras和updates来执行(记得先按第1步更改版本号)。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/喵喵爱编程/article/detail/1016383
推荐阅读
相关标签
  

闽ICP备14008679号