解析自己的主机名时出现问题

解析自己的主机名时出现问题

我正在运行 10.04 LTS 服务器。我无法解决此问题:“无法解析主机服务器 ubuntu”。

我尝试了所有推荐的解决方案,但都没有奏效。我了解到此问题可能是由于 hosts 和 hostname 文件中的设置不正确引起的:

这些文件的竞赛如下:

文件:主机名

serverubuntu

文件:主机

127.0.0.1       localhost
127.0.1.1       serverubuntu

# The following lines are desirable for IPv6 capable hosts
::1     localhost ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters

注意:我已尝试对 hosts 文件的第二行进行几种不同的输入:

127.0.1.1  serverubuntu  serverubuntu.hvc.rr.com
127.0.1.1  serverubuntu  serverubuntu.hvc.rr.com serverubuntu

但无一奏效。

我的服务器确实分配了一个静态 IP 地址:192.168.1.199

答案1

你的 /etc/hosts 文件应该显示如下内容

127.0.0.1       localhost
127.0.1.1       serverubuntu//change this to 127.0.0.1
192.168.1.199   serverubuntu//add your static IP


# The following lines are desirable for IPv6 capable hosts
::1     localhost ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters

相关内容