MySql 접속시 발생하는 에러
The server time zone value 'KST' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.
KST 타임존을 인식하지 못하는 이슈
해결
jdbc:mysql://ip:port/DB이름?characterEncoding=UTF-8&serverTimezone=UTC
또는 서버에서 타임존 변경
https://devlink.tistory.com/277
'[ 서버 & DB 관련 ] > MySQL' 카테고리의 다른 글
MySQL의 CHECK 제약 조건 (특정 조건의 값만 저장) (0) | 2020.07.02 |
---|---|
mysql CHARACTER SET 확인 및 변경 (0) | 2020.06.15 |
쿼리 결과를 파일로 저장하기 (0) | 2020.01.17 |
mysql 테이블 존재 확인, 컬럼 존재 확인, 컬럼 추가 등 (0) | 2019.11.13 |
mysql dump (0) | 2019.10.30 |