美文网首页
mysql出现错误提示:Communications link

mysql出现错误提示:Communications link

作者: 小明今晚加班 | 来源:发表于2019-09-26 09:14 被阅读0次

无论是在mysql客户端连接,或者是code连接中,都会出现该错误,特别是在mysql8.0+这个问题更常见,采取的解决办法如下:

进入mysql CLI,执行以下命令:

//下面这个wait_timeout默认好像是28800(8h)
show global variables like 'wait_timeout';
//然后把时间设置长点(7day)
set global wait_timeout=604800;
set global interactive_timeout=604800;

bingo!


image.png

相关文章

网友评论

      本文标题:mysql出现错误提示:Communications link

      本文链接:https://www.haomeiwen.com/subject/mtvyectx.html