mysql: Communications link failure

来源:互联网 发布:淘宝店铺布局和理性 编辑:程序博客网 时间:2024/05/21 13:55

1:问题描述:

使用Connector/J连接MySQL数据库,程序运行较长时间后就会报以下错误:
Communications link failure,The last packet successfullyreceived from the server was *** millisecond ago.The last packet successfullysent to the server was *** millis econd ago。

如图:

2:解决方案:主要有两个:

2.1:修改my.cnf

          [mysqld]
wait_timeout=31536000
interactive_timeout=31536000
将过期时间修改为1年。
2.2:在连接URL上添加参数:&autoReconnect=true&failOverReadOnly=false

3:问题分析:

  MySQL服务器默认的“wait_timeout”是28800秒即8小时,意味着如果一个连接的空闲时间超过8个小时,MySQL将自动断开该连接,而连接池却认为该连接还是有效的(因为并未校验连接的有效性),当应用申请使用该连接时,就会导致上面的报错。

0 0
原创粉丝点击