解决IDEA连接数据库 Server returns invalid timezone. Go to ‘Advanced‘ tab and set ‘serverTimezone‘

解决方案:

(1)在Advanced里面找到serverTimezone填入Hongkong

(2)cmd进入控制台

mysql -u root -p
show variables like '%time_zone%';
set global time_zone='+8:00';

G:\coupon\src\main\resources>mysql -u root -p
Enter password: ****
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 246
Server version: 5.7.38-log MySQL Community Server (GPL)

Copyright (c) 2000, 2022, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql>  show variables like '%time_zone%';
+------------------+--------+
| Variable_name    | Value  |
+------------------+--------+
| system_time_zone |        |
| time_zone        | +08:00 |
+------------------+--------+
2 rows in set, 1 warning (0.00 sec)

mysql>  set global time_zone='+8:00';
Query OK, 0 rows affected (0.00 sec)

mysql>

猜你喜欢

转载自blog.csdn.net/weixin_46085718/article/details/129708545