本文主要是介绍Oracle Linux yum源错误: [Errno 14] HTTP Error 404 - Not Found($releasever变量错误),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
配置阿里源:
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
yum makecache
报错:
http://mirrors.aliyun.com/centos/7Server/os/x86_64/repodata/repomd.xml: [Errno 14] HTTP Error 404 - Not Found
解决:
在阿里源的官方网站找,发现正确的路径应该是: http://mirrors.aliyun.com/centos/7/os/x86_64/repodata/
查看阿里的源的文件CentOS-Base.repo,发现链接的定义是: http://mirrors.aliyun.com/centos/$releasever/os/$basearch/
判断应该是在Oracle Linux中$releasever
的定义有问题,没找到具体哪里设置的这个变量,
在Redhat的官方文档中找到修改$releasever
变量的方法:echo "7" > /etc/yum/vars/releasever
结果:
yum makecache
yum update -y
yum install epel-release -y
成功执行
这篇关于Oracle Linux yum源错误: [Errno 14] HTTP Error 404 - Not Found($releasever变量错误)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!