LINUX:错误“Could not resolve host: mirrors.aliyun.com; Unknown error“

前提

前提:使用SSH连接虚拟机

           操作系统镜像版本:CentOS-7-x86_64-Minimal-2207-02

           配置文件变更为:(地址:centos-vault镜像_centos-vault下载地址_centos-vault安装教程-阿里巴巴开源镜像站 (aliyun.com)

#Linux  Centos 7.9.2009
minorver=7.9.2009
sudo sed -e "s|^mirrorlist=|#mirrorlist=|g" \
         -e "s|^#baseurl=http://mirror.centos.org/centos/\$releasever|baseurl=https://mirrors.aliyun.com/centos-vault/$minorver|g" \
         -i.bak \
         /etc/yum.repos.d/CentOS-*.repo

       

错误

该错误产生的原因:DNS 服务器配置

                                 系统无法解析域名
[root@localhost ~]# yum -y install wget
Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
https://mirrors.aliyun.com/centos-vault/7.9.2009/os/x86_64/repodata/repomd.xml: [Errno 14] curl#6 - "Could not resolve host: mirrors.aliyun.com; Unknown error"
Trying other mirror.


 One of the configured repositories failed (CentOS-7 - Base),
 and yum doesn't have enough cached data to continue. At this point the only
 safe thing yum can do is fail. There are a few ways to work "fix" this:

     1. Contact the upstream for the repository and get them to fix the problem.

     2. Reconfigure the baseurl/etc. for the repository, to point to a working
        upstream. This is most often useful if you are using a newer
        distribution release than is supported by the repository (and the
        packages for the previous distribution release still work).

     3. Run the command with the repository temporarily disabled
            yum --disablerepo=base ...

     4. Disable the repository permanently, so yum won't use it by default. Yum
        will then just ignore the repository until you permanently enable it
        again or use --enablerepo for temporary usage:

            yum-config-manager --disable base
        or
            subscription-manager repos --disable=base

     5. Configure the failing repository to be skipped, if it is unavailable.
        Note that yum will try to contact the repo. when it runs most commands,
        so will have to try and fail each time (and thus. yum will be be much
        slower). If it is a very temporary problem though, this is often a nice
        compromise:

            yum-config-manager --save --setopt=base.skip_if_unavailable=true

failure: repodata/repomd.xml from base: [Errno 256] No more mirrors to try.
https://mirrors.aliyun.com/centos-vault/7.9.2009/os/x86_64/repodata/repomd.xml: [Errno 14] curl#6 - "Could not resolve host: mirrors.aliyun.com; Unknown error"

 

解决方法

下面是一些常见的中国公共 DNS 服务器:

- 阿里公共 DNS:
  - 223.5.5.5
  - 223.6.6.6

- 百度公共 DNS:
  - 180.76.76.76

- 114 DNS:
  - 114.114.114.114
  - 114.114.115.115

编辑 `/etc/resolv.conf` 文件来使用这些 DNS 服务器。

1. 打开 `/etc/resolv.conf` 文件:

vi /etc/resolv.conf

2. 添加以下内容:

nameserver 223.5.5.5
nameserver 223.6.6.6
nameserver 180.76.76.76
nameserver 114.114.114.114
nameserver 114.114.115.115

3. 保存并退出文件。

4. 检查 DNS 配置是否生效:

nslookup baidu.com

如果能够正常解析域名,说明 DNS 配置已经生效。

5. 如果你希望这些设置永久生效,可以考虑锁定 `/etc/resolv.conf` 文件防止被 DHCP 客户端覆盖:

chattr +i /etc/resolv.conf

请注意,锁定文件可能会影响到系统的其他网络配置操作。如果需要修改 DNS 配置,可以先解锁:

chattr -i /etc/resolv.conf

尝试以上步骤后,你的系统应该能够正常解析域名并连接到软件源。

### 解决方案 当遇到 `Could not resolve host: mirrors.aliyun.com; Unknown error` 错误时,这通常意味着DNS解析失败。可以尝试以下几种方法来解决问题: #### 方法一:更换镜像源 如果当前使用的阿里云镜像源出现问题,可以选择其他可用的镜像源。例如,使用官方CentOS镜像源或其他第三方镜像源。 对于CentOS 7, 可以通过替换 `/etc/yum.repos.d/CentOS-Base.repo` 文件中的内容为官方仓库地址或另一个可靠的国内镜像源来实现这一点[^2]。 ```bash sudo curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo ``` 此命令会下载并覆盖现有的 CentOS 配置文件,从而切换到新的软件库位置。 #### 方法二:检查网络连接和DNS设置 确认系统的网络配置是否正常工作以及能否访问互联网。测试与其他网站之间的连通性可以帮助判断问题所在。另外,核查 `/etc/resolv.conf` 中定义的名字服务器列表是否有误也非常重要。 #### 方法三:清除YUM缓存 有时旧的数据可能会干扰新请求的成功执行。因此建议先清理 yum 的元数据缓存后再重试操作: ```bash sudo yum clean all ``` 之后再次运行需要的操作看看情况是否会有所改善。 #### 方法四:重启NetworkManager服务 有时候简单的重启 NetworkManager 或者 network 服务也可能有助于恢复正常的 DNS 功能。 ```bash sudo systemctl restart NetworkManager # 或者如果是较老版本系统则可能需要用这条指令代替上面那条: sudo service network restart ``` 以上措施应该能够帮助克服由于无法解析主机而导致的各种难题。如果仍然存在相同的问题,则可能是更深层次的基础架构方面出现了状况,这时就需要进一步排查了。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值