欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

IDEA链接MySQL失败:Server returns invalid timezone. Go to 'Advanced' tab and set 'serverTimezone' propert

程序员文章站 2022-03-29 19:58:29
...

先看问题:在IDEA自带的数据库管理工具中链接MySQL时测试链接失败:
给出一个提示:字面意思就是服务器返回的是一个无效时区,需要手动设置时区;
IDEA链接MySQL失败:Server returns invalid timezone. Go to 'Advanced' tab and set 'serverTimezone' propert
解决:

mysql -uroot -p
进入mysql的命令行:输入一下代码回车。
set global time_zone='+8:00';

IDEA链接MySQL失败:Server returns invalid timezone. Go to 'Advanced' tab and set 'serverTimezone' propert
再次连接就成功啦
IDEA链接MySQL失败:Server returns invalid timezone. Go to 'Advanced' tab and set 'serverTimezone' propert