解决:The last packet sent successfully to the server was 0 milliseconds ago

今天在启动项目的时候报了bug:The last packet sent successfully to the server was 0 milliseconds ago,然后在网上找了一大堆的文章,看是不是数据库连接超时的问题解决:The last packet sent successfully to the server was 0 milliseconds ago_第1张图片然后发现都不是什么连接超时,也不是什么要加

useSSL=false;遇到这个问题先去检查本地的数据库/线上的数据库是否连接正常,像我就是出了bug第一时间去网上找而不是认真看错误信息,找了半天才发现原来是navicat连不上远程的数据库

解决方法:

线上服务器查看防火墙时候开启

service firewalld status

解决:The last packet sent successfully to the server was 0 milliseconds ago_第2张图片

这个表示开启防火墙。

关闭防火墙即可

systemctl stop firewalld

然后我的项目就可以正常启动了

你可能感兴趣的:(mysql,java)