mysql: Communications link failure解决
使用Connector/J连接MySQL
数据库,程序运行较长时间后就会报以下错误:
Communications link failure,The last packet successfully received from the server was *** millisecond ago.The last packet successfully sent to the server was *** millisecond ago。
其中错误还会提示你修改wait_timeout或是使用Connector/J的autoReconnect属性避免该错误。
MySQL服务器默认的“wait_timeout”是28800秒即8小时,意味着如果一个连接的空闲时间超过8个小时,MySQL将自动断开该连接,而连接池却认为该连接还是有效的(因为并未校验连接的有效性),当应用申请使用该连接时,就会导致上面的报错。
解决办法有两个:
一是修改my.cnf:
1)修改配置文件/etc/my.cnf(windows下my.ini),在[mysqld]下加两行interactive_timeout=设置值 wait_timeout=设置的值 然后重启mysql服务 service mysqld stop 命令 然后service mysqld start
或者是 service mysqld restart 再在sql里输入 show variables like '%timeout%' 查看这两个变量的值是不是改过来了
2)直接在sql命令行里设置 set global interactive_timeout=设置值 set global wait_timeout=设置值 这样的设置好像是只要一重启mysql服务 就会还原的
如:
将过期时间修改为1年。
二是在连接URL上添加参数:&autoReconnect=true&failOverReadOnly=false
本文介绍了使用Connector/J连接MySQL数据库时出现的通讯链接失败问题及其原因,并提供了两种解决方案:一是调整MySQL服务器的wait_timeout和interactive_timeout配置;二是利用连接器的autoReconnect属性。
9874

被折叠的 条评论
为什么被折叠?



