当我觉得对Linux系统下修改hostname已经非常熟悉的时候,碰到了几个个问题,这几个问题给我好好上了一课,很多知识点,当你觉得你已经掌握的时候,其实你了解的还只是皮毛。技术活,切勿浅尝则止!
实验环境:Red Hat Enterprise Linux Server release 5.7 (Tikanga) ,其它版本Linux可能有所不同。请以实际环境为准。
其实我多次修改过hostname,一般只需要修改 /etc/hosts 和 /etc/sysconfig/network 两个文件下相关配置即可。但是,今天我遇到了两个问题:
问题1: 为什么/etc/sysconfig/network配置文件中HOSTNAME为localhost.localdomain,但是显示的hostname为po132345806-a,那到底hostname的配置值放在哪里?
1 | 1: [[email protected] ~]# more /etc/hosts 2: # Do not remove the following line, or various programs 3: # that require network functionality will fail. 4: 127.0.0.1 localhost.localdomain localhost 5: ::1 localhost6.localdomain6 localhost6 6: [[email protected] ~]# more /etc/sysconfig/network 7: NETWORKING=yes 8: NETWORKING_IPV6=yes 9: HOSTNAME=localhost.localdomain |
有图有真相,免得大家不相信这个现象,当我第一次碰到这种特殊情况时,我也非常纳闷。Google了一些资料加上自己的实践才弄明白
问题2: 修改了hostname后,如何使其立即生效而不用重启操作系统。
问题3: 修改hostname有几种方式?
问题4: hostname跟/etc/hosts 下配置有关系吗?
问题5: 如何查看hostname的值,以那个为准?
今天我们先探讨第一个问题
问题1解答:我一直以为hostname的值配置在/etc/sysconfig/network中,这个文件里面HOSTNAME配置为啥,hostname值就是啥。但是为什么出现上面那种情况呢?难道/etc/sysconfig/network
不是hostname的配置文件,难道还另有其它配置文件?于是我当时实验了一下修改了/etc/sysconfig/network文件中HOSTNAME为DB-Server,发现
hostname的值依然没有变化,于是重启了计算机
1: "/etc/sysconfig/network" 3L, 66C written 2: 132345806-a ~]# hostname 3: 806-a.gfg1.esquel.com 4: 132345806-a ~]# more /proc/sys/kernel/hostname 5: 806-a.gfg1.esquel.com 6: 132345806-a ~]# sysctl kernel.hostname 7: ostname = po132345806-a.gfg1.esquel.com 8: 132345806-a ~]# 9: 132345806-a ~]# reboot |
重启过后发现居然hostname变为DB-Server了,也就是说修改配置文件/etc/sysconfig/network下的HOSTNAME生效了。那么也就是说应该是有人修改过 kernel.hostname,请看下面实验
1: [[email protected] ~]# more /etc/sysconfig/network 2: 3: NETWORKING=yes 4: 5: NETWORKING_IPV6=yes 6: 7: HOSTNAME=DB-Server.localdomain 8: 9: [[email protected] ~]# echo Test > /proc/sys/kernel/hostname 10: 11: [[email protected] ~]# more /etc/proc/sys/kernel/hostname 12: 13: /etc/proc/sys/kernel/hostname: No such file or directory 14: 15: [[email protected] ~]# more /proc/sys/kernel/hostname 16: 17: Test 18: 19: [[email protected] ~]# /etc/init.d/network restart 20: 21: Shutting down interface eth0: [ OK ] 22: 23: Shutting down loopback interface: [ OK ] 24: 25: Bringing up loopback interface: [ OK ] 26: 27: Bringing up interface eth0: 28: 29: Determining IP information for eth0... done. 30: 31: [ OK ] 32: 33: [[email protected] ~]# hostname 34: 35: Test 36: 37: [[email protected] ~]# 38: |
注意:其实 /etc/init.d/network restart 没有什么用。只是当时实验时以为必须重启网络服务。
在SecureCRT新建克隆一个会话发现hostanme已经从DB-Server变为Test了,但是/etc/sysconfig/network的值还是DB-Server.localdomain,并没有变为Test。
12345678910111213141516171819202122232425262728 | [[email protected] Test ~]# more /etc/sysconfig/network 2: 3: NETWORKING=yes 4: 5: NETWORKING_IPV6=yes 6: 7: HOSTNAME=DB-Server.localdomain 8: 9: [[email protected] Test ~]# hostname 10: 11: Test 12: 13: [[email protected] Test ~]# more /etc/hosts 14: 15: # Do not remove the following line, or various programs 16: 17: # that require network functionality will fail. 18: 19: 127.0.0.1 localhost.localdomain localhost 20: 21: ::1 localhost6.localdomain6 localhost6 22: 23: [[email protected] Test ~]# more /proc/sys/kernel/hostname 24: 25: Test 26: 27: [[email protected] Test ~]# 28: |
但是如果重启系统后hostname会变为DB-Server,Google了一些英文文档资料才知道,hostname是Linux系统下的一个内核参数,它保存在/proc/sys/kernel/hostname下,但是它的值是Linux启动时从rc.sysinit读取的。
hostname is a kernel parameter which stores hostname of the system. Its location is”/proc/sys/kernel/hostname”
The value for this parameter is loaded to kernel by rc.sysinit file during the boot process.
而/etc/rc.d/rc.sysinit中HOSTNAME的取值来自与/etc/sysconfig/network下的HOSTNAME,代码如下所示,至此,我们可以彻底明白了。
12345678910111213141516171819 | HOSTNAME=`/bin/hostname` HOSTTYPE=`uname -m` unamer=`uname -r` set -m if [ -f /etc/sysconfig/network ]; then . /etc/sysconfig/network fi if [ -z "$HOSTNAME" -o "$HOSTNAME" = "(none)" ]; then HOSTNAME=localhost fi |
结论:/etc/sysconfig/network 确实是hostname的配置文件,hostname的值跟该配置文件中的HOSTNAME有一定的关联关系,但是没有必然关系,hostname的值来自内核参数/proc/sys/kernel/hostname,如果我通过命令sysctl kernel.hostname=Test修改了内核参数,那么hostname就变为了Test了。
预知后事如何,且听下回分解
如果想深入体验LINUX系统的新手,也可以先下载一个方德Linux软件中心试用一下。
免费下载地址:http://www.nfs-cloud.cn:81/appCenter/open/softcenter