기본적으로 Linux는 UTC 시간대를 따르고 있는 경우가 많아서 이를 한국 시간대(KST)로 변경하는 작업이 해보겠다.
Linux 환경에서 date 명령을 입력하면 현재 시간을 알 수 있다. UTC로 설정되어 있는 것을 볼 수 있다.
ubuntu@ip-172-31-4-153:~$ date
2Fri Dec 10 20:13:38 UTC 2021
tzselect를 통해 시간대를 변경할 수 있다. 안내하는 절차에 따라 Asia -> Korea(South) 시간대로 설정한다.
ubuntu@ip-172-31-4-153:~$ tzselect
Please identify a location so that time zone rules can be set correctly.
Please select a continent, ocean, "coord", or "TZ".
1) Africa
2) Americas
3) Antarctica
4) Asia
5) Atlantic Ocean
6) Australia
7) Europe
8) Indian Ocean
9) Pacific Ocean
10) coord - I want to use geographical coordinates.
11) TZ - I want to specify the timezone using the Posix TZ format.
#? 4
Please select a country whose clocks agree with yours.
1) Afghanistan 12) East Timor 23) Korea (North) 34) Oman 45) Tajikistan
2) Antarctica 13) Georgia 24) Korea (South) 35) Pakistan 46) Thailand
3) Armenia 14) Hong Kong 25) Kuwait 36) Palestine 47) Turkmenistan
4) Azerbaijan 15) India 26) Kyrgyzstan 37) Philippines 48) United Arab Emirates
5) Bahrain 16) Indonesia 27) Laos 38) Qatar 49) Uzbekistan
6) Bangladesh 17) Iran 28) Lebanon 39) Russia 50) Vietnam
7) Bhutan 18) Iraq 29) Macau 40) Saudi Arabia 51) Yemen
8) Brunei 19) Israel 30) Malaysia 41) Singapore
9) Cambodia 20) Japan 31) Mongolia 42) Sri Lanka
10) China 21) Jordan 32) Myanmar (Burma) 43) Syria
11) Cyprus 22) Kazakhstan 33) Nepal 44) Taiwan
#? 24
한국 시간대를 선택하고 각자 rc 파일에(.bashrc 등) 환경 변수를 TZ를 추가해주면 설정이 끝난다.
export TZ="Asia/Seoul"
'aws' 카테고리의 다른 글
[Ubuntu] Ubuntu에서 rc.local 없을 때, 생성하는 방법 (0) | 2022.01.09 |
---|---|
[EC2] 프리티어(t2.micro)에서 Jenkins 용량 초과 문제 (2) | 2022.01.09 |
[Ubuntu] Jenkins 설치 (0) | 2022.01.09 |
[AWS] EBS 볼륨 크기 조정 후 Linux 파일 시스템 확장 (2) | 2021.12.10 |
[AWS] EC2, ubuntu 서버 백그라운드 실행 (2) | 2021.08.09 |