如何永久更改主机名

如何永久更改主机名

我读过几篇关于如何做到这一点的文章,但似乎每次我编辑“/etc/hosts”然后重新启动服务器时,它都会恢复到以前的主机名。我正在运行 16.04.2 LTS

我只是希望它指向我的服务器 IP,因为当我尝试安装 wordpress + lamp 时,它会将其安装到http://freeddns.noip.com我已经设置好了。

希望这些信息足够。谢谢。

答案1

您还需要编辑 /etc/hosts 和 /etc/hostname 文件。/etc/hosts 文件将 IP 地址映射到主机名,而 /etc/hostname 文件仅包含主机名。编辑 /etc/hosts 文件后,编辑 /etc/hostname 文件并在其中写入新主机名。要应用更改:

systemctl restart systemd-logind.service

您还可以使用以下命令来更改主机名:

hostnamectl set-hostname new_host_name

相关内容