반응형
Linux 시스템에서 호스트명을 변경하는 방법이다.
환경
OS | OS version |
RHEL | 6,7 |
Centos | 6,7 |
Ubuntu | 16.04, 18.04 |
상기 버전에서는 모두 확인이 되었으나 다른 버전에서도 될거라 생각이 들지만 확실하지는 않다.
## hostname 변경 하기
>> COMMAND : hostnamectl set-hostname [HOSTNAME]
[root]# hostnamectl set-hostname test123
[root]# hostnamectl
Static hostname: test123
Icon name: computer-vm
Chassis: vm
Machine ID: 62192667bc894d5db12bd4f97469798d
Boot ID: d7ad1446d3ba4cd88022eef250d70737
Virtualization: microsoft
Operating System: CentOS Linux 7 (Core)
CPE OS Name: cpe:/o:centos:centos:7
Kernel: Linux 3.10.0-957.el7.x86_64
Architecture: x86-64
hostname에 대소문자를 구분하고자 할 경우 "--static"옵션을 사용하여 설정한다.
>> COMMAND : hostnamectl set-hostname --stataic [HOSTNAME]
[root@testsvr ~]# hostnamectl set-hostname --static Testsvr
[root@Testsvr ~]# hostnamectl
Static hostname: Testsvr
Icon name: computer-vm
Chassis: vm
Machine ID: 62192667bc894d5db12bd4f97469798d
Boot ID: d7ad1446d3ba4cd88022eef250d70737
Virtualization: microsoft
Operating System: CentOS Linux 7 (Core)
CPE OS Name: cpe:/o:centos:centos:7
Kernel: Linux 3.10.0-957.el7.x86_64
Architecture: x86-64
프롬프트까지 변경된 것을 확인하고자 한다면 logout했다가 다시 로그인하면 된다.
반응형
'운영체제 > Linux' 카테고리의 다른 글
[Linux] sectigo root/chain 인증서 추가 (0) | 2020.01.28 |
---|---|
[Linux] passwd 변경 (1) | 2019.12.17 |
[Linux - 보안조치] 계정 잠금 임계값 설정 (0) | 2019.10.16 |
[Linux - UTIL ] Zabbix 모니터링 tool - Client setup (0) | 2019.07.08 |
[Linux - UTIL ] Zabbix admin password 변경 (0) | 2019.07.08 |