今天打算从0开始学习Linux系统部署服务,首先要做的第一步当然是安装Linux和配置环境,但是在使用yum命令安装JDK时提示"Could not resolve host: mirrorlist.centos.org; Unknown error"报错,查了两小时百度都是千篇一律,实际问题并没有解决。

首先遇到的问题是使用yum命令,结果报错"Could not resolve host: mirrorlist.centos.org; Unknown error"在这里插入图片描述
百度查了关键词"Could not resolve host: mirrorlist.centos.org; Unknown error"
在这里插入图片描述
方法1和方法2都检查过了,没有问题,ping www.baidu.com是可以成功的,但是ping mirrorlist.centos.org失败了,所以问题找到了。原因是国内网络不能访问外网。所以需要将mirrorlist.centos.org替换为国内可以访问的镜像源。

先备份文件

cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak

然后参考百度找到的方法下载阿里镜像源到本地Linux

 curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

在这里插入图片描述
然后再检查是否下载成功
这里显示已经成功替换为阿里的镜像源了

 cat /etc/yum.repos.d/CentOS-Base.repo


然后再清除yum缓存

sudo yum clean all

重新生成缓存

sudo yum makecache

在这里插入图片描述
最后再尝试yum命令
在这里插入图片描述
成功了!

最后这条笔记只是作为本人学习过程中遇到问题的记录,希望大家不要吐槽哈!

点赞(0) 打赏

评论列表 共有 0 条评论

暂无评论

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部