Raymond Raymond

MySQL: The server time zone value 'AEDT' is unrecognized or represents more than one time zone

event 2020-12-28 visibility 1,118 comment 0 insights toc
more_vert
insights Stats
toc Table of contents

Issue context

When connecting to MySQL using JDBC driver, the following error is encountered:

Underlying cause: java.sql.SQLException : The server time zone value 'AEDT' 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 specific time zone value if you want to utilize time zone support.

AEDT is Australian Eastern Daylight Time (AEDT).

Resolution

This error can be avoided by adding serverTimezone=UTC in the connection string to ignore the server time zone in client side as the error message itself suggests.

Thus, we can update JDBC connection string:

jdbc:mysql://localhost/hive_metastore?serverTimezone=UTC
More from Kontext
comment Comments
No comments yet.

Please log in or register to comment.

account_circle Log in person_add Register

Log in with external accounts