1
|
The server time zone value 'KST' is unrecognized or represents more than one time zone.
|
위 와 같은 에러가 발생한 이유는 mysql system의 타임존 디폴트 값이 KST인데 JAVA하고 연결이 안된다는 소리이다.
해결 방법은
sqoop으로 mysql 연결할때 사용하는 jdbc URL에 serverTimezone=Asia/Seoul를 추가해 주면된다.
예시) jdbc:mysql://하둡마스터ip주소:mysql포트번호/접속할 mysql데이터베이스명?serverTimezone=Asia/Seoul |
*mysql 디폴트 포트번호는 3306이다.
'Error 모음집' 카테고리의 다른 글
Python-MySQL 쿼리 실행 후 rowcount 값이 -1인 경우 (0) | 2019.05.29 |
---|---|
convert MySQL Table Data to JSON string using Python (0) | 2019.05.20 |
hadoop 관련 Error (0) | 2019.05.16 |
hadoop 에러(Container killed on request. Exit code is 143) (0) | 2019.05.09 |
sqoop-mysql 연동 에러(접근 권한) (0) | 2019.05.09 |