IDEA连接mysql数据库发生的错误! Server returns invalid timezone. Go to 'Advanced' tab and set 'serv
Posted Eric-Lee
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IDEA连接mysql数据库发生的错误! Server returns invalid timezone. Go to 'Advanced' tab and set 'serv相关的知识,希望对你有一定的参考价值。
错误提示信息:Server returns invalid timezone. Go to \'Advanced\' tab and set \'serverTimezon\'。
出现该问题的原因是mysql驱动jar中的默认时区是UTC。
UTC代表的是全球标准时间 ,但是我们使用的时区是东八区,领先UTC八个小时。
在mysql命令窗口下输入:
show variables like ‘%time_zone’;
如果红色区域是SYSTEM,就需要执行:
set global time_zone = \'+8:00\';
以上是关于IDEA连接mysql数据库发生的错误! Server returns invalid timezone. Go to 'Advanced' tab and set 'serv的主要内容,如果未能解决你的问题,请参考以下文章
IDEA配置IDEA连接mysql报错Server returns invalid timezone. Go to 'Advanced' tab and set 'serv
IDEA连接MySQL------serverTimezone
IntelliJ IDEA 上的web项目进行数据库连接时出现java.lang.ClassNotFoundException: com.mysql.jdbc.Driver错误解决办法