Cannot retrieve repository metadata (repomd.xml) for repository

哈哈哈hh發表於2022-05-31

映象下載、域名解析、時間同步請點選  阿里雲開源映象站

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

透過yum -y install XXX 嘗試安裝軟體,出現Cannot retrieve repository metadata (repomd.xml) for repository: base. Please verify its path and try again的錯誤

問題原因:對應的映象庫中無法找到對應的repomd.xml檔案

問題解決:原centos/6/ 下已經沒有相關的檔案,嘗試修改本地映象配置檔案

步驟:

cd /etc/yum.repos.d
vim CentOS-Base.repo

因為$releasever 獲取的是centos的版本號,我的centos獲取的版本為6,但是映象站中無對應版本檔案,因此需要修改本地配置檔案

:%s/$releasever/7/g #將檔案中$releasever全部改成7或其他版本

或者替換參考的配置

gpgcheck=1
gpgkey=
#released updates 
[updates]
name=CentOS-7 - Updates - mirrors.aliyun.com
failovermethod=priority
baseurl=
        
        
gpgcheck=1
gpgkey=
#additional packages that may be useful
[extras]
name=CentOS-7 - Extras - mirrors.aliyun.com
failovermethod=priority
baseurl=
        
        
gpgcheck=1
gpgkey=
#additional packages that extend functionality of existing packages
[centosplus]
name=CentOS-7 - Plus - mirrors.aliyun.com
failovermethod=priority
baseurl=
        
        
gpgcheck=1
enabled=0
gpgkey=
#contrib - packages by Centos Users
[contrib]
name=CentOS-7 - Contrib - mirrors.aliyun.com
failovermethod=priority
baseurl=
        
        

退出儲存

:wq

清除和重新生成快取

yum clean all 
yum makecache

完成之後再次透過yum -y install XXX 嘗試安裝軟體

本文轉自:https://blog.csdn.net/weixin_46220576/article/details/123230035


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/70003733/viewspace-2898091/,如需轉載,請註明出處,否則將追究法律責任。

相關文章