Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Error:error:0308010C:digital envelope routines::unsupported
- NODE_VERSION
- rwdImageMaps
- GeoJSON object too complex/large
- C언어
- 반응형 페이지 좌표 변환
- 이미지 맵
- ogr2ogr
- Unable to find the global bin directory
- node
- nodejs
- AWS
- expo
- ERR_PNPM_NO_GLOBAL_BIN_DIR
- 설치완료안됨
- SASS
- 어셈블리어
- 김골라
- EC2
- react
- AWS CodePipeline
- credential error
- AWS CodeBuild
- can't getting credentials
- 이미지 좌표 추출
- CSS
- Sequelize Error: Dialect needs to be explicitly supplied as of v4.0.0
- S3
- aws ec2
- netlify variables
Archives
- Today
- Total
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 |