CentOS 7.x 호스트네임 변경하기
기존 방식대로 /etc/hostname 파일을 수정해도 되고 hostnamectl 유틸을 사용해도 된다.
▶ 호스트네임 확인
[root@conoha bin]# hostnamectl
Static hostname: localhost
Icon name: computer-vm
Chassis: vm
Machine ID: ce592a37a02b45f78d729b0b2e24d5cf
Boot ID: 62082661e9f840a59c2ebf6789b7a56e
Virtualization: kvm
Operating System: CentOS Linux 7 (Core)
CPE OS Name: cpe:/o:centos:centos:7
Kernel: Linux 3.10.0-327.10.1.el7.x86_64
Architecture: x86-64
▶ 호스트네임 변경
[root@conoha bin]# hostnamectl set-hostname www.example.com
변경이 되었는지 확인해보자.
[root@conoha bin]# hostnamectl
Static hostname: www.example.com
Icon name: computer-vm
Chassis: vm
Machine ID: ce592a37a02b45f78d729b0b2e24d5cf
Boot ID: 62082661e9f840a59c2ebf6789b7a56e
Virtualization: kvm
Operating System: CentOS Linux 7 (Core)
CPE OS Name: cpe:/o:centos:centos:7
Kernel: Linux 3.10.0-327.10.1.el7.x86_64
Architecture: x86-64
[root@conoha bin]# cat /etc/hostname
www.example.com
[root@conoha bin]# hostname
www.example.com
'LINUX' 카테고리의 다른 글
리눅스 sftp 암호입력 없이 사용하는 방법 (0) | 2016.05.28 |
---|---|
리눅스 서버간 scp로 파일 복사하기 (0) | 2016.05.27 |
리눅스 아파치 서버가 살아있는지 체크하는 쉘스크립트 (0) | 2016.05.26 |
아파치 IP 로 접속시 차단 방법 (2) | 2016.05.26 |
리눅스 아파치 VirtualHost 설정 방법 (0) | 2016.05.26 |