一、Centos 7.x

1、编辑hostname文件

[root@localhost ~]# vi /etc/hostname #(重启生效)

Centos 修改主机名_centos

2、编辑hosts文件,给127.0.0.1添加hostname

[root@localhost ~]# vi /etc/hosts

127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4 new-hostname #(设置的目标主机名)
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6

3、或直接修改

[root@localhost ~]# hostnamectl set-hostname node1.com.cn

二、Centos 6.x

1、编辑network文件

[root@localhost ~]# vi /etc/sysconfig/network   #(重启生效)

Centos 修改主机名_其他_02

2、设置当前的hostname(立即生效)

[root@localhost ~]# hostname new-hostname #(设置的目标主机名)

3、编辑hosts文件,给127.0.0.1添加hostname

[root@localhost ~]# vi /etc/hosts

127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4 new-hostname #(设置的目标主机名)
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6