欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

[08001] Could not create connection to database server. Attempted reconnect 3 times. Giving up.

程序员文章站 2022-05-01 15:54:14
...

今天想尝试用idea的Database连接数据库

       [08001] Could not create connection to database server. Attempted reconnect 3 times. Giving up.

当我继续操作的时候发现我的数据库连接不上[08001]

       [08001] Could not create connection to database server. Attempted reconnect 3 times. Giving up.

然后我发现配置文件里的写法是这样的

url: jdbc:mysql://localhost:3306/analogy?serverTimezone=UTC

在后面加上了一个时差的设置

连接数据库的时候一定要把时区设置好

              UTC代表的是全球标准时间 ,但是我们使用的时间是北京时区也就是东八区,领先UTC八个小时。

              //北京时间==东八区时间!=北京当地时间
              serverTimezone=GMT%2B8 
              //或者使用上海时间
              serverTimezone=Asia/Shanghai

设置完时区后,我就成功的连接上了

       [08001] Could not create connection to database server. Attempted reconnect 3 times. Giving up.

 

相关标签: 数据库