zoukankan      html  css  js  c++  java
  • IDEA连接mysql报错!Server returns invalid timezone. Go to 'Advanced' tab and set 'serverTimezone'

    在IDEA连接mysql时,地址,用户名,密码,数据库名,全都配置好了,但是点测试连接,报错:Server returns invalid timezone. Go to 'Advanced' tab and set 'serverTimezon,说明数据库没有设置时区

    使用如下方法设置时区

    C:Usersoor>mysql -u root -p
    Enter password: ********
    Welcome to the MySQL monitor. Commands end with ; or g.
    Your MySQL connection id is 118
    Server version: 5.7.28-log MySQL Community Server (GPL)

    Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.

    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 | SYSTEM |
    +------------------+--------+
    2 rows in set, 1 warning (0.02 sec)

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

    mysql>

  • 相关阅读:
    线圈与触发器
    线圈
    sourceinsight 宏
    linu  micro time
    删除 .svn 文件夹
    !!!
    ACE_MAIN
    窗体的一些主要属性
    http协议的几个概念
    保留每个name的最新日期的数据
  • 原文地址:https://www.cnblogs.com/ooo888ooo/p/12424368.html
Copyright © 2011-2022 走看看