1、mysql出现错误提示:Communications link failure The last packet sent successfully to the server was 0 mi…
无论是在mysql客户端连接,或者是code连接中,都会出现该错误,特别是在mysql8.0+这个问题更常见,采取的解决办法如下:
进入mysql,执行以下命令:
//下面这个wait_timeout默认好像是28800(8h)show global variables like 'wait_timeout';//然后把时间设置长点(7day)set global wait_timeout=604800;set global interactive_timeout=604800;
2、连接mysql时报错Public Key Retrieval is not allowed的解决方法
在DBeaver连接到mysql时提示错误:Public Key Retrieval is not allowed
在数据库名后面添加 ?allowPublicKeyRetrieval=true 即可
如果是在jdbc中就需要在url后面添加即可
来源地址:https://blog.csdn.net/qq_44484541/article/details/130152525