IDEA连接mysql报错!Server returns invalid timezone. Go to 'Advanced' tab and set 'serverTimezone' prope
程序员文章站
2022-07-04 20:18:36
...
目录
IDEA连接mysql,地址,用户名,密码,数据库名,全都配置好了,点测试连接,咔!不成功!
一:错误信息如下:Server returns invalid timezone. Go to 'Advanced' tab and set 'serverTimezone' property manually
翻译过来就是:服务器返回无效时区。进入“高级”选项卡,手动设置“serverTimezone”属性。
出现该问题的原因是MySQL驱动jar中的默认时区是UTC。
UTC代表的是全球标准时间 ,但是我们使用的时间是北京时区也就是东八区,领先UTC八个小时。
二:怎么解决呢?
第一,设置mysql时区。
首先你得确保你的mysql,配置好环境变量了
配置完环境变量,就可以在命令窗口直接执行下面的命令啦!
1. 进入mysql的命令窗口,输入密码,回车
2,继续输入
show variables like'%time_zone';
(注意不要漏掉后面的分号),回车,如图:
显示 SYSTEM 就是没有设置时区啦。
3,现在我们来设置时区。输入
set global time_zone = '+8:00';
( 注意不要漏掉后面的分号),回车,
再输入第2步中的
show variables like'%time_zone';
回车,如图:
这便是设置成功啦!
这个时候你要是没设置成功,就关闭mysql命令窗口,再打开,再次 输入即可。
这时你重新连接下数据库,也许能连接成功!如果没有,就继续往下走!
第二,同步mysql驱动。
我本机安装的mysql版本是5.7的,那么IDEA要连接mysql也应该匹配下驱动版本。把Driver改成MySQL for 5.1就可以了
在点击Test Connection测试下,成功啦!
【补充】
如果,你选的是MySQL,
数据库又是其他版本的,也没关系。
在驱动列表里找到 MySQL ,右边Driver files 里,选择一下你需要的版本,保存就可以了。
推荐阅读
-
IDEA连接mysql报错!Server returns invalid timezone. Go to 'Advanced' tab and set 'serverTimezone' prope
-
使用idea关联mysql时报错Server returns invalid timezone. Go to 'Advanced' tab and set 'serverTimezon'
-
IDEA连接mysql又报错!Server returns invalid timezone. Go to tab and set serverTimezone prope的问题
-
解决Server returns invalid timezone. Go to ‘Advanced‘ tab and set ‘serverTimezone‘ prope后还会报500错的方法
-
IDEA连接mysql又报错!Server returns invalid timezone. Go to tab and set serverTimezone prope的问题
-
Idea连接Datasource时报时区错误的解决方法Server returns invalid timezone. Go to 'Advanced' tab and set 'serverTime
-
IDEA链接MySQL失败:Server returns invalid timezone. Go to 'Advanced' tab and set 'serverTimezone' propert