Notice
Recent Posts
Recent Comments
Link
«   2025/07   »
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 31
Tags
more
Archives
Today
Total
관리 메뉴

끄적끄적

[aws] ec2에서 timezone과 locale 변경하기 본문

개발

[aws] ec2에서 timezone과 locale 변경하기

으아아아앜 2020. 3. 6. 19:52

timezone 변경

$ date //현재 시간 확인
Thu Dec 13 06:41:49 UTC 2018 
$ cat /etc/localtime //시간대 확인
...UTC

$sudo rm /etc/localtime
$sudo ln -s /usr/share/zoneinfo/Asia/Seoul /etc/localtime
$ date

locale 변경

$ locale // 현재 설정되어있는 locale 확인
$ locale -a //현재 설정가능한 locale 리스트 확인
$ vim /etc/sysconfig/i18n //에디터를 이용해 해당 아래의 내용을 변경
LANG=en_US.UTF-8
--->
LANG=ko_KR.utf8

 

참고 : https://jungjoongi.com/2018/12/13/aws-ec2-timezone/

Comments