SYMPTOM:
When importing data from a MySQL database with MySQL JDBC Driver, “The server time zone value ‘EDT’ is unrecognized or represents more than one time zone.” error message appear as shown below:

The server time zone value ‘EDT’ 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.
CAUSE:
This error is thrown by MySQL JDBC Driver.
MySQL database server is configured to a time zone like, EDT, PDT, CEST, etc. These time zone values are not recognizable since JAVA 8 while Strategy uses JAVA 8 since Strategy 10.4.x.
ACTION:
This error can be avoided by adding serverTimezone=UTC in the connection string to ignore the server time zone in client side.
Steps to add serverTimezone=UTC in MySQL JDBC connection string:

Further readings:
Stackoverflow discussions: https://stackoverflow.com/questions/51530342/error-saying-server-time-zone-value-edt-is-unrecognized-when-trying-to-ma
A bug about this issue in MySQL BugDB: https://bugs.mysql.com/bug.php?id=85816
Article Reference Number: KB442386