Notice
Recent Posts
Recent Comments
Link
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Archives
Today
Total
관리 메뉴

오늘은 어제보다 나아지길

[Ubuntu] 서버 표준 시간 KST로 설정하기 본문

[Ubuntu]

[Ubuntu] 서버 표준 시간 KST로 설정하기

그녕쓰 2020. 1. 9. 00:44

기본적으로  AWS에서 EC2를 생성하면 표준 시간대는 UTC로 잡혀 있는 것 같다.

나는 대한민국 서울의 시간(KST)으로 시간이 필요하니 설정을 변경하였다.

ubuntu:~$ date
Wed Jan  8 06:47:31 UTC 2020

date 명령어로 현재 시간이 UTC 기준으로 잡혀있는 걸 확인했다. 

ubuntu:~$ 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 time zone using the Posix TZ format.
#? 4
Please select a country whose clocks agree with yours.
 1) Afghanistan		  18) Israel		    35) Palestine
 2) Armenia		  19) Japan		    36) Philippines
 3) Azerbaijan		  20) Jordan		    37) Qatar
 4) Bahrain		  21) Kazakhstan	    38) Russia
 5) Bangladesh		  22) Korea (North)	    39) Saudi Arabia
 6) Bhutan		  23) Korea (South)	    40) Singapore
 7) Brunei		  24) Kuwait		    41) Sri Lanka
 8) Cambodia		  25) Kyrgyzstan	    42) Syria
 9) China		  26) Laos		    43) Taiwan
10) Cyprus		  27) Lebanon		    44) Tajikistan
11) East Timor		  28) Macau		    45) Thailand
12) Georgia		  29) Malaysia		    46) Turkmenistan
13) Hong Kong		  30) Mongolia		    47) United Arab Emirates
14) India		  31) Myanmar (Burma)	    48) Uzbekistan
15) Indonesia		  32) Nepal		    49) Vietnam
16) Iran		  33) Oman		    50) Yemen
17) Iraq		  34) Pakistan
#? 23

The following information has been given:

	Korea (South)

Therefore TZ='Asia/Seoul' will be used.
Selected time is now:	Wed Jan  8 15:48:33 KST 2020.
Universal Time is now:	Wed Jan  8 06:48:33 UTC 2020.
Is the above information OK?
1) Yes
2) No
#? 1

You can make this change permanent for yourself by appending the line
	TZ='Asia/Seoul'; export TZ
to the file '.profile' in your home directory; then log out and log in again.

Here is that TZ value again, this time on standard output so that you
can use the /usr/bin/tzselect command in shell scripts:
Asia/Seoul

tzselect 명령어로  국가와 도시 시간을 선택을 할 수가 있는데 

나는 Asia/Seoul으로 설정을 하기 위해서 선택을 하고 

다시 date를 입력

ubuntu:~$ date
Wed Jan  8 06:48:49 UTC 2020

설정이 바뀌지 않고 서버를 재시작하여도 똑같았다. ㅠㅠ

홈 디렉터리의. profile 파일 맨 밑에

TZ='Asia/Seoul'; export TZ

문장을 입력하고 다시 시도해도 마찬가지.....

다른 방법을 찾아서 시도해봤다.

ubuntu:~$ timedatectl
                      Local time: Wed 2020-01-08 06:55:26 UTC
                  Universal time: Wed 2020-01-08 06:55:26 UTC
                        RTC time: Wed 2020-01-08 06:55:27
                       Time zone: Etc/UTC (UTC, +0000)
       System clock synchronized: yes
systemd-timesyncd.service active: yes
                 RTC in local TZ: no

timedatectl 명령어는 현재 설정된 타임존을 볼 수 있다고 한다.

ubuntu:~$ timedatectl list-timezones | grep Seoul
Asia/Seoul

timedatectl list-timezones | grep Seoul 

 표준 시간대의 리스트를 보여주면서 Seoul 이 있는지 확인을 하였다.

내가 원하던 Asia/Seoul 이 있으니 

ubuntu:~$ sudo timedatectl set-timezone Asia/Seoul
ubuntu:~$ timedatectl
                      Local time: Wed 2020-01-08 15:56:29 KST
                  Universal time: Wed 2020-01-08 06:56:29 UTC
                        RTC time: Wed 2020-01-08 06:56:30
                       Time zone: Asia/Seoul (KST, +0900)
       System clock synchronized: yes
systemd-timesyncd.service active: yes
                 RTC in local TZ: no
ubuntu:~$ date
Wed Jan  8 15:56:31 KST 2020
ubuntu:~$ sudo service nginx restart
ubuntu:~$ date
Wed Jan  8 16:00:37 KST 2020

set-timezone으로 설정을 변경해주고 

다시 서버를 재시작하니 표준시간대가 변경이 되었다! 

'[Ubuntu]' 카테고리의 다른 글

[Ubuntu] php 메모리 부족 에러  (0) 2020.08.04
Comments