1. timezone 정보 생성 ( ex Asia/Seoul )

mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root -p mysql

 

2. 서버 timezone 변경

timedatectl set-timezone Asia/Seoul

 

3. mysql db에서 timezone 변경

set global time_zone = 'Asia/Seoul';

set session time_zone = 'Asia/Seoul';

 

참고...) 서버 캐릭터셋 변경

localectl set-locale LANG=ko_KR.utf8

 

'RDB > MySQL' 카테고리의 다른 글

MySQL 8.0 Hint for set value parameter  (0) 2023.06.22
MySQL 8.0 Hint for Query block  (0) 2023.06.22
MySQL 8.0 Hint  (0) 2023.06.22
MySQL OOM 최소화  (0) 2023.04.27
delay replication  (0) 2023.03.28

+ Recent posts