centos 网络: DNS解析错误

项目场景:

提示:这里简述项目相关背景:

centos安装postgresql无法解析域名


问题描述

提示:这里描述项目中遇到的问题:

[root@localhost ~]# yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm
已加载插件:fastestmirror, langpacks
无法打开 https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm ,跳过。
错误:无须任何处理
[root@localhost ~]# wget https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm
--2024-08-21 12:04:12--  https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm
正在解析主机 download.postgresql.org (download.postgresql.org)... 失败:未知的名称或服务。
wget: 无法解析主机地址 “download.postgresql.org”
[root@localhost ~]# ping www.baidu.com
ping: www.baidu.com: 未知的名称或服务

试着ping 百度域名也没用


原因分析:

提示:这里填写问题的分析:

这通常是由于 DNS 解析失败导致的

/etc/resolv.conf 中配置公用的DNS服务器

[root@localhost ~]# cat /etc/resolv.conf
# Generated by NetworkManager
nameserver 8.8.8.8

配置之后,ping 百度就正常了

[root@localhost ~]# ping www.baidu.com
PING www.a.shifen.com (180.101.50.188) 56(84) bytes of data.
64 bytes from 180.101.50.188 (180.101.50.188): icmp_seq=1 ttl=53 time=4.23 ms
64 bytes from 180.101.50.188 (180.101.50.188): icmp_seq=2 ttl=53 time=4.18 ms
64 bytes from 180.101.50.188 (180.101.50.188): icmp_seq=3 ttl=53 time=4.70 ms
^C

你可能感兴趣的:(linux,centos,网络,linux)