centos6 无法更换镜像源的解决方法
2021/5/19 7:30:05
本文主要是介绍centos6 无法更换镜像源的解决方法,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
出错原因:
http://mirrors.aliyun.com/centos/6/os/x86_64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - “The requested URL returned error: 404 Not Found”
Trying other mirror.
http://mirrors.aliyuncs.com/centos/6/os/x86_64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 7 - “couldn’t connect to host”
Trying other mirror.
http://mirrors.cloud.aliyuncs.com/centos/6/os/x86_64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 6 - “Couldn’t resolve host ‘mirrors.cloud.aliyuncs.com’”
Trying other mirror.
Error: Cannot retrieve repository metadata (repomd.xml) for repository: base. Please verify its path and try again
原centos/6/ 下已经没有相关的文件,自然找不到报404,改成7即可
解决方案
1、cd /etc/yum.repos.d 2、vi CentOS-Base.repo #命令行情况下输入,将文件中$releasever全部改成7 3、:%s/$releasever/7/g
4、yum clean all # 清除 5、yum makecache # 缓存
$releasever 是获取你centos的版本号的,例如我的centos的版本号为6.,获取到的为6,但是已经找不到了,所以直接全局改成7即可
这篇关于centos6 无法更换镜像源的解决方法的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-18Nacos安装入门教程
- 2024-11-18Nacos安装入门:轻松掌握Nacos服务注册与配置管理
- 2024-11-18Nacos配置中心入门:新手必读教程
- 2024-11-18Nacos配置中心入门教程
- 2024-11-18RocketMQ IM和业务服务沟通入门教程
- 2024-11-18Rocketmq安装入门
- 2024-11-18RocketMq原理入门:简单教程让你快速上手
- 2024-11-18ShardingJDBC分库分表配置入门详解
- 2024-11-18ShardingJdbc数据分库分表查询入门教程
- 2024-11-18如何用Ollama在CPU和GPU上部署大模型llama3(小白也能懂的教程)