mysql连接失败,报错:Caused by: java.net.ConnectException: Connection refused和The last packet sent successfu

问题描述:

使用mybatis连接mysql的时候,数据库的用户名和密码都是正确的,但是一连接就会报这个异常:
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.


ConnectException: Connection refused

郁闷两天了,最终还是静下心来找原因,原来是在开通了IPV6功能的机子上就不行,可能是与firewail有关。

解决办法:

在写数据库连接的URL的时候,使用127.0.0.1:3306来代替主机名localhost,这样就没有问题了。
希望其他人少走弯路。

你可能感兴趣的:(web)