$> sudo timedatectl set-timezone Asia/Seoul Timezone 확인 서버를 처음 설치하게 되면 기본적으로 UTC timezone을 사용하게 됩니다. $> timedatectl 이는 timezone 설정을 관리하는 /etc/localtime에 심볼릭 링크로 UTC가 지정되어 있기 때문입니다. $> ls -l /etc/localtime 만약 원하는 timezone이 있다면 아래 명령을 통하여 확인 가능합니다. $> timedatectl list-timezones | grep Seoul 저는 timezones 목록 중에서 Seoul만 추출하였지만, 원하지 않는 경우에는 $> timedatectl list-timzezones 호출 해도 됩니다. Timezone 설정 원하는 Tim..