错误显示:

首先确保用户名称以及密码输入正确

idea连接mysql数据库遇到Server returns invalid timezone. Go to ‘Advanced‘ tab and set ‘serverTimezone‘ 。。。。。_解决方法

解决方法:

设置mysql时区

第一步:检查MySQL时区是否正确

进入命令窗口(Win + R),连接数据库 mysql -uroot -p,回车,输入密码,回车,如图:

idea连接mysql数据库遇到Server returns invalid timezone. Go to ‘Advanced‘ tab and set ‘serverTimezone‘ 。。。。。_mysql_02

第二步:输入 show variables like’%time_zone’; 回车,如图:

idea连接mysql数据库遇到Server returns invalid timezone. Go to ‘Advanced‘ tab and set ‘serverTimezone‘ 。。。。。_用户名_03

如果显示 SYSTEM 就是没有设置时区,需要进行设置。

第三步:设置时区,输入set global time_zone = ‘+8:00’; 回车,如图:

idea连接mysql数据库遇到Server returns invalid timezone. Go to ‘Advanced‘ tab and set ‘serverTimezone‘ 。。。。。_用户名_04

重新连接下数据库,就可以成功喽!