如何在CentOS 7和RHEL 7上设置主机名和FQDN
时间:2019-08-20 17:58:30 来源:igfitidea点击:
我们将在CentOS 7和RHEL7(Red Hat Enterprise Linux 7)上设置主机名和FQDN。
设置环境
IP地址:192.168.56.101
主机名:theitroad
FQDN(全限定域名):FQDN是“主机名+域名”的组合。 我们的域名是 example.com因此FQDN是theitroad.example.com
在rhel7和CentOS 7上更改主机名和FQDN的步骤:
编辑/etc/hosts文件
添加新的一行:
vi /etc/hosts 192.168.56.101 theitroad.example.com theitroad
编辑/etc/hostname
设置主机名
vi /etc/hostname theitroad
在CentOS 7和RHEL7中也可以使用“hostnamectl”命令设置主机名:
hostnamectl --static set-hostname theitroad
查看主机名和FQDN
现在我们不需要从RHEL7和CentOS 7重新启动或者注销登录,主机名和FQDN已设置。
查看主机名
hostname
查看FQDN
hostname -f
但是,如果主机名和FQDN不起作用。那么运行下面的命令
systemctl restart systemd-hostnamed