关于我们

质量为本、客户为根、勇于拼搏、务实创新

< 返回新闻公共列表

解决CentOS执行yum命令错误:Error: Cannot find a valid baseurl for repo: base

发布时间:2021-08-09 20:07:33
1491984010112764.jpg

今天在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

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

image.png

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、Centos系统版本号

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

  • cat /etc/redhat-release

 image.png

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

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改为extrasupdates来执行(记得先按第1步更改版本号)。



/template/Home/8a/PC/Static