[08001] Could not create connection to database server. Attempted reconnect - IDEA连接MySQL出错

[08001] Could not create connection to database server. Attempted reconnect - IDEA连接MySQL出错_第1张图片
错误提示:

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

主要是时区的问题导致的。

解决的方案:
将URL中内容更改成如下形式:

jdbc:mysql://localhost:3306/**数据库名称**?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC

‘?’前面的部分替换成你自己的即可

你可能感兴趣的:([08001] Could not create connection to database server. Attempted reconnect - IDEA连接MySQL出错)