连不上,通过这一步解决
搞死了..辛苦但觉得值得
刷数据库 出问题
IDEA关联MySQL报错:
Server returns invalid timezone. Go to ‘Advanced’ tab and set ‘serverTimezone’ property manually.
原因:
时区错误,MySQL默认的时区是UTC时区,比北京时间晚8个小时。
解决方案:
在mysql的命令模式下输入:
set global time_zone='+8:00'; 解决
问题:每次重启服务都要重新配置一遍。
解决:mysql>set persist time_zone='+8:00';
先学到2/5吧 累的很
https://www.cnblogs.com/yuanchenqi/articles/6083427.html