码迷,mamicode.com
首页 > 数据库 > 详细

mysql异常之: The server time zone value ‘?D1ú±ê×?ê±??‘ is unrecognized or represents more than one time zone

时间:2019-05-12 11:04:01      阅读:360      评论:0      收藏:0      [点我收藏+]

标签:util   plain   size   spec   col   dex   修改   driver   ati   

mysql异常之: The server time zone value ‘?D1ú±ê×?ê±??‘ is unrecognized or represents more than one time zone

连接数据库时显示:

java.sql.SQLException: The server time zone value ‘?D1ú±ê×?ê±??‘ is unrecognized or represents more than one time zone. 

You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.

这是由于时区问题导致的, 只需要更改MySQL的时区即可:

技术图片

重启mysql, 再次输入: show variables like ‘%time_zone%‘;

如果还是显示time_zone    |     SYSTEM

可能是由于还没有更新缓存导致的, 再次输入: set time_zone=‘+8:00‘;

1
2
3
set global time_zone = ‘+8:00‘; ##修改mysql全局时区为北京时间,即我们所在的东8
set time_zone = ‘+8:00‘; ##修改当前会话时区
flush privileges; #立即生效

  

 如果显示Query Ok, 0 rows affected, 那么很可能是已经更新时区成功了

如果以上方法还不可以解决问题, 那么尝试在代码中做调整

jdbc:mysql://127.0.0.1:3306/onestep?useUnicode=true&characterEncoding=UTF-8&allowMultiQueries=true&useSSL=false&serverTimezone=GMT%2B8

技术图片

重启服务和应用即可





mysql异常之: The server time zone value ‘?D1ú±ê×?ê±??‘ is unrecognized or represents more than one time zone

标签:util   plain   size   spec   col   dex   修改   driver   ati   

原文地址:https://www.cnblogs.com/harsh/p/10851092.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!