当前位置: 代码迷 >> 综合 >> The server time zone value ‘???ú±ê×??±??‘ is unrecognized
  详细解决方案

The server time zone value ‘???ú±ê×??±??‘ is unrecognized

热度:19   发布时间:2024-01-04 00:18:50.0

问题:

springboot启动过程中,数据库报错:

The server time zone value '???ú±ê×??±??' is unrecognized or represents more

原因:

SYSTEM为SQL默认美国时间,而我们中国要比他们迟8小时,因此将时区设置为当前系统时区即可,采用+8:00格式

解决办法:

登录mysql数据库,执行如下命令:

show variables like '%time_zone%';
set global time_zone='+8:00'; 

  相关解决方案