linux – 在Ubuntu 10.04上,/ etc / hostname是否应该包含服务器的FQDN?

在Ubuntu 10.04上,/ etc / hostname是否应包含服务器的完全限定域名?

解决方法

不,只是主机名部分. According to Ubuntu’s man pages,/ etc / hostname应该只包含主机名的主机名部分,而不是FQDN:

THE FQDN

You can’t change the FQDN
(as returned by hostname –fqdn) or
the DNS domain name (as returned by
dnsdomainname) with this command. The
FQDN of the system is the name that
the resolver(3) returns for the host
name.

Technically: The FQDN is the name
gethostbyname(2) returns for the host
name returned by gethostname(2). The
DNS domain name is the part after the
first dot.

Therefore it depends on the
configuration (usually in
/etc/host.conf) how you can change
it. Usually (if the hosts file is
parsed before DNS or NIS) you can
change it in /etc/hosts.

NOTES

The address families hostname tries when looking up the FQDN,
aliases
and network addresses of the host are determined by the
configuration
of your resolver. For instance,on GNU Libc systems,the
resolver can
be instructed to try IPv6 lookups first by using the inet6
option in /etc/resolv.conf.

FILES

/etc/hosts /etc/hostname This file should only contain domain name and not the full FQDN.

相关文章

linux常用进程通信方式包括管道(pipe)、有名管道(FIFO)、...
Linux性能观测工具按类别可分为系统级别和进程级别,系统级别...
本文详细介绍了curl命令基础和高级用法,包括跳过https的证书...
本文包含作者工作中常用到的一些命令,用于诊断网络、磁盘占满...
linux的平均负载表示运行态和就绪态及不可中断状态(正在io)的...
CPU上下文频繁切换会导致系统性能下降,切换分为进程切换、线...