Rhel

重命名 RedHat7 主機名而不重新啟動

  • November 25, 2018

如何在不重新啟動的情況下重命名 RedHat7 主機名?我也在嘗試自動化這個任務。

[root@stephan ~]# echo stephan2 > /etc/hostname # this is the file that your system reads on boot, to determine the hostname
[root@stephan ~]# sed -i s/stephan/stephan2/g /etc/hosts # many networking headaches will ensue if this isn't updated
[root@stephan ~]# hostname -F /etc/hostname # reread the hostname file to update the systems hostname.

您的提示將繼續顯示舊主機名,直到您註銷並重新登錄,或執行新的 shell 會話。

[root@stephan ~]# logout
[stephan@stephan ~]$ sudo su -
Last login: Wed Sep 28 18:06:35 EDT 2016 on pts/0
[root@stephan2 ~]#

引用自:https://unix.stackexchange.com/questions/313046