반응형
Ubuntu 20.04 호스트 이름 관리하는 방법
우분투 Hostname
Hostname 확인하기
우분투 터미널에서 hostname 명령어로 이름을 확인할 수 있다.
microserver:~$ hostname
microserver
또는 /etc/hostname 을 읽어서 이름을 확인할 수 있다.
microserver:~$ cat /etc/hostname
microserver
Hostname 바꾸기
우분투 터미널에서 hostnamectl 명령어로 이름을 바꿀 수 있다.
microserver:~$ cat /etc/hostname
microserver
microserver:~$ hostnamectl set-hostname webserver
==== AUTHENTICATING FOR org.freedesktop.hostname1.set-static-hostname ===
Authentication is required to set the statically configured local host name, as well as the pretty host name.
Authenticating as: makepluscode,,, (makepluscode)
Password:
==== AUTHENTICATION COMPLETE ===
microserver:~$ cat /etc/hostname
webserver
또는 /etc/hostname 의 이름을 수정하면 서버 이름이 변경된다.
참고자료
https://www.cyberciti.biz/faq/ubuntu-change-hostname-command/
반응형
'기타 > Linux' 카테고리의 다른 글
[우분투] Ubuntu 20.04 터미네이터 설치 및 설정하기 (0) | 2022.04.03 |
---|---|
[우분투] Docker-Compose 설치하기 (0) | 2021.12.16 |
[우분투] Ubuntu 20.04 노트북 덮개 닫기 파워 설정 방법 (0) | 2021.12.13 |
[우분투] Docker 설치하기 (0) | 2021.12.01 |
[우분투] Ubuntu 20.04 Gitlab IP 주소 변경하기 (0) | 2021.11.29 |
[우분투] Docker 이미지 관리하기 (0) | 2021.11.08 |
[우분투] parted 를 이용한 대용량 파티션 관리 (0) | 2021.10.20 |
[우분투] Ubuntu 20.04 Gitlab CE Push 오류 (0) | 2021.10.16 |