错误界面

IDEA连接mysql,地址,用户名,密码,数据库名,全都配置好了,点测试连接,报错如下:
IDEA连接mysql报错Server returns invalid timezone.Go to 'Advanced' tab and set 'serverTimezone' property-LMLPHP
翻译过来就是:服务器返回无效时区。进入“高级”选项卡,手动设置“serverTimezone”属性。

错误原因:

MySQL驱动jar中的默认时区是UTC。UTC代表的是全球标准时间 ,但是我们使用的时间是北京时区也就是东八区,领先UTC八个小时。因为时区不一致,所以提示Server returns invalid timezone. Go to ‘Advanced’ tab and set ‘serverTimezone’ property manually.

解决方案

我的问题出现在两块,第一,检查mysql环境配置。第二,设置mysql的时区。详细步骤如下:

第一:检查mysql环境配置

IDEA连接mysql报错Server returns invalid timezone.Go to 'Advanced' tab and set 'serverTimezone' property-LMLPHP
1,检查完环境变量,就可以在命令窗口直接执行下面的命令啦!进入命令窗口(Win + R),连接数据库 mysql -hlocalhost -uroot -p,回车,输入密码,回车,如图:
IDEA连接mysql报错Server returns invalid timezone.Go to 'Advanced' tab and set 'serverTimezone' property-LMLPHP
2,继续输入 show variables like’%time_zone’; (注意不要漏掉后面的分号),回车,如图:
IDEA连接mysql报错Server returns invalid timezone.Go to 'Advanced' tab and set 'serverTimezone' property-LMLPHP
显示 SYSTEM 就是没有设置时区啦。

第二:设置mysql的时区

1,设置时区。
在MySQL的安装目录下找到my.ini文件打开,查找"mysqld"然后添加 default-time-zone=’+08:00’
IDEA连接mysql报错Server returns invalid timezone.Go to 'Advanced' tab and set 'serverTimezone' property-LMLPHP
2,在服务中 重启mysql;
3,重新输入 show variables like’%time_zone’; (注意不要漏掉后面的分号),回车,如图:
IDEA连接mysql报错Server returns invalid timezone.Go to 'Advanced' tab and set 'serverTimezone' property-LMLPHP
4.IDEA重新连接mysql就OK了
IDEA连接mysql报错Server returns invalid timezone.Go to 'Advanced' tab and set 'serverTimezone' property-LMLPHP

09-02 00:24