호스트명을 확인하고 변경하는 방법에는 두 가지 방법이 있다.
명령어를 사용하는 방법과 /etc/hostname 파일을 직접 조회 및 수정하는 방법.
1. 호스트명 확인
1-1. hostname 명령 사용
1 2 | [root@localhost ~]# hostname localhost.localdomain | cs |
1-2. /etc/hostname 파일 조회
1 2 | [root@localhost ~]# cat /etc/hostname localhost.localdomain | cs |
2. 호스트명 변경
2-1. hostnamectl 명령 사용
1 | [root@localhost ~]# hostnamectl set-hostname e-cloudlab.com | cs |
→ 현재 세션(쉘)을 종료하고 재접속하면 바뀌어 있다.
2-2. /etc/hostname 파일 수정
1 2 | [root@localhost ~]# vi /etc/hostname e-cloudlab.com | cs |
→ 위와 같이 변경하고 저장한 후 시스템을 재부팅해야 적용된다.
3. 호스트명 변경 후 추가 작업(권장)
3-1. /etc/hosts 파일 확인
1 2 3 | [root@localhost ~]# vi /etc/hosts 127.0.0.1 localhost localhost.localdomain ::1 localhost localhost.localdomain | cs |
3-2. 다음과 같이 변경된 호스트명 입력하고 저장
1 2 | 127.0.0.1 localhost e-cloudlab.com ::1 localhost e-cloudlab.com | cs |
'Linux > RHEL/CentOS' 카테고리의 다른 글
[설정] RHEL/CentOS 7.x 네트워크 설정 (0) | 2018.04.06 |
---|---|
[설치] Red Hat Enterprise Linux 7.x Minimal 설치(Legacy Bios) (0) | 2018.03.21 |
[설치] CentOS 7.x Minimal 설치(UEFI) (0) | 2018.03.18 |
[설치] CentOS 7.x Minimal 설치(Legacy Bios) (0) | 2018.03.17 |