如何在GNU / Linux上设置域名?


27

与可以以不同方式更改的主机名类似:

  • 临时使用hostname命令
  • 永久使用/etc/hostname(或,/etc/sysconfig/network/etc/HOSTNAME,这些文件由init脚本使用)

我想更改我的域名。我可以使用该domainname命令,但是有没有办法使它在重新启动后永久存在?我认为可以在其中配置它,/etc/resolv.conf但通常会生成此文件,我不完全了解searchdomain指令之间的区别。到底什么时候将信息传递给domainname程序来设置域名?

您对此有什么想法吗?

我希望在各个发行版之间都可以兼容。因此,如果有人对不同的口味有不同的建议,我很乐意接受。


每个发行版的执行方式都不同。您对哪些感兴趣?您阅读了他们的文档吗?
迈克尔·汉普顿

主要是RedHat和Debian口味。而且我在文档中找不到相关信息。但是也许我还没有足够努力,我承认我不知道文档可能在哪里(或者即使在文档中)。
2013年

1
这还算公平。在Red Hat的文档中,它埋在附录中。在Debian中时,它并没有被掩埋,但是令人困惑 ……
Michael Hampton

1
@Michael debian邮件列表上的此链接最有用,尤其是因此,要最终回答您的问题,请在需要重新命名的地方配置FQDN。如果要在包装盒上的文件中添加它,则它将放在/ etc / hosts中。如果您像我一样运行自己的名称服务器(为简单起见,我运行dnsmasq),则只需将信息记录在
Mildred

在Red Hat 7和派生系统上,应使用hostnamectl设置主机名。cyberciti.biz/faq/rhel-redhat-c​​entos-7-change-hostname-command/…–
Xavy,

Answers:


42

设置FQDN

我正在使用Debian 7,这对我有用。感谢Fernando Ribeiro

sudoedit / etc /主机名

server # here's where you put the server's host name

激活主机名

sudo主机名-F / etc / hostname

将域名和地址添加到服务器

sudoedit / etc / hosts

192.168.1.2   server.domain server

校验

> hostname --short
server

> hostname --domain
domain

> hostname --fqdn
server.domain

> hostname --ip-address
192.168.1.2

在更改服务器名称后,/etc/hostname您可能无法编辑/etc/hosts。在这种情况下,你必须使用xauth add在这个答案说明stackoverflow.com/questions/20611783/...
少年中号

1
你不应该使用sudo vim。设置$EDITOR和使用sudoedit
törzsmókus

5

当您使用redhat-base系统时,Linux使用/etc/sysconfig/network文件,并且应将变量设置HOSTNAMEFQDN,当您使用时FQDNlinux它本身将决定域名。

例如:

HOSTNAME=web.mydomain.com

但是,在使用debian-base系统时,应使用以下命令填充/etc/hostname文件FQDN

web.mydomain.com

注意:如果要设置,请domain name确保已设置FQDN(完全合格的域名)

设置后,hostname -d显示domain name


1
谢谢,但是我给人的印象是这些文件应仅包含主机名,而不包含域部分。如果我按照您的建议进行操作,则主机名将直接返回fqdn(hostname和之间没有区别hostname -f)。
2013年

哦,顺便说一句,我忘了说hostname web.mydomain.com配置文件后应该手动设置主机名。因为配置文件内存时无法应用更改。(如果有用,请不要忘记有用的标志)
PersianGulf

4

man hostname,从头到尾都被引用

FILES
       /etc/hostname  Historically  this file was supposed to only contain the hostname and not the full canonical
       FQDN. Nowadays most software is able to cope with a full FQDN here. This file is read at boot time  by  the
       system initialization scripts to set the hostname.

       /etc/hosts Usually, this is where one sets the domain name by aliasing the host name to the FQDN.

   THE FQDN
       The  FQDN (Fully Qualified Domain Name) of the system is the name that the resolver(3) returns for the host
       name, such as, ursula.example.com.  It is usually the hostname followed by the DNS domain  name  (the  part
       after the first dot).  You can check the FQDN using hostname --fqdn or the domain name using dnsdomainname.

       You cannot change the FQDN with hostname or dnsdomainname.

       The recommended method of setting the FQDN is to make the hostname be an alias for the fully qualified name
       using /etc/hosts, DNS, or NIS. For example, if the  hostname  was  "ursula",  one  might  have  a  line  in
       /etc/hosts which reads

              127.0.1.1    ursula.example.com ursula

       Technically: The FQDN is the name getaddrinfo(3) 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 of the resolver (usually in /etc/host.conf) how  you  can  change
       it.  Usually  the  hosts  file  is  parsed  before  DNS  or NIS, so it is most common to change the FQDN in
       /etc/hosts.

       If a machine has multiple network interfaces/addresses or is used in a  mobile  environment,  then  it  may
       either  have  multiple  FQDNs/domain  names or none at all. Therefore avoid using hostname --fqdn, hostname
       --domain and dnsdomainname.  hostname --ip-address is subject to the  same  limitations  so  it  should  be
       avoided as well.

我会说它确实完整地描述了整个事情。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.