报错:
IDEA连接MySQL数据库出现Connection to @localhost failed. [08001] Could not create connection to database server. Attempt 错误
错误原因:
连接的时候出现SystemTimezone 问题,数据库的时区是系统默认时区,没有更改到东8区。
版本:
(MySQL8.0,idea9.2)
解决方案:
- 打开cmd命令行,输入mysql -u root -p 输入密码进入MySQL;
- 输入 show variables like'%time_zone';
- 再输入set global time_zone='+8:00';
连接成功