ImFe's study

[DB] Error Code: 1298. Unknown or incorrect time zone: 'Asia/Seoul', MySQL 타임존 설정 실패 본문

Programming/DB

[DB] Error Code: 1298. Unknown or incorrect time zone: 'Asia/Seoul', MySQL 타임존 설정 실패

ImFe 2024. 9. 22. 21:37

실행 쿼리

SET GLOBAL time_zone = 'Asia/Seoul';

오류

21:17:42    SET GLOBAL time_zone = 'Asia/Seoul'    Error Code: 1298. Unknown or incorrect time zone: 'Asia/Seoul'    0.000 sec

해결방법

MySQL :: Time zone description tables

표시한 .zip파일 다운로드 후 압축해제

use mysql;
source [파일경로]\[파일명.sql];

row affected가 우다다 뜨면 정상적으로 반영

 

set global time_zone = 'Asia/Seoul';
select @@global.time_zone;

정상적으로 반영되었다

'Programming > DB' 카테고리의 다른 글

[프로그래머스] MySQL 1단계 문제 모음  (2) 2022.08.03
[DB] HeidiSQL 설치/기본세팅  (0) 2021.04.26
Comments