mysql5.7.20出现The server time zone value '�й���׼ʱ��' is unrecogni。。。。的解决办法

java.sql.SQLException: The server time zone value '�й���׼ʱ��' 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.

解决办法:

url后面增加:

jdbc.url=jdbc:mysql://localhost:3306/seckill?useUnicode=true&characterEncoding=utf8&serverTimezone=UTC

试了很多次这个方法都不管用后来直接修改了时区。

修改数据库时区:

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

 

如果想永久生效时区设置,则需要修改mysql的相关配置文件

mysql安装在linux上时,通过如下操作修改配置文件

# vim /etc/my.cnf ##在[mysqld]区域中加上

default-time_zone = '+8:00'

# /etc/init.d/mysqld restart ##重启mysql使新时区生效

 

mysql安装在Windows上时,通过修改安装文件下的“my.ini”配置文件:

在文件末尾添加如下内容:

#设置时区
default-time_zone = '+8:00'

然后重启mysql服务既可(方法:win+r,输入“service.msc”,找到mysql服务,右键选择重启就好)

 

 

你可能感兴趣的:(操作技术)