当前位置: 代码迷 >> 综合 >> The server time zone value '???ú±ê×??±??' is unrecognized or represents ..... mysql时区问题解决
  详细解决方案

The server time zone value '???ú±ê×??±??' is unrecognized or represents ..... mysql时区问题解决

热度:39   发布时间:2023-12-23 03:59:15.0

原因是最新版的mysql  8.0.18驱动,用的是美国时区,设置以后即可。

进入mysql客户端,输一下命令即可。

SET GLOBAL time_zone = '+8:00';

SET time_zone = '+8:00';

FLUSH PRIVILEGES;

 

  相关解决方案