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>

  • 相关阅读:
    [项目管理]如何写好项目验收材料
    [英语学习]英语高级口译证书考试 备查
    A1042 Shuffling Machine洗牌机器
    B1018锤子剪刀布
    B1012数字分类
    B1008数组元素循环右移问题
    B1046划拳
    B1026 程序运行时间
    B1016部分A+B
    B1011A+B和C
  • 原文地址:https://www.cnblogs.com/ooo888ooo/p/12424368.html
Copyright © 2011-2022 走看看