Home >Database >Mysql Tutorial >关于mysql长时间不访问,出现linkfailure问题的解决方案。_MySQL

关于mysql长时间不访问,出现linkfailure问题的解决方案。_MySQL

WBOY
WBOYOriginal
2016-06-01 13:11:431338browse

我开发了一 个基于ssh的系统,使用了mysql,但是出现了一个很奇怪的问题,每次访问系统,第二天重新使用,就会出现错误,查看错误log,出现了mysql link failure 的问题,后来网上查找相关资料,给出的解释是mysql在连接超过8小时后会自动断开,网上有说修改timeout的,有说增加autoreconnect的,我都试过,没有解决问题。后来终于在一篇文章中找到根本原因,mysql是8小时断开的,连接池并没有断开,当我们第二天去访问系统的时候,系统还是从连接池获取数据,实际上mysql已经断开了,所以就会出现获取数据错误。我对连接池和数据库连接进行了配置,及时释放idle的连接,问题得以解决。具体配置看下方:


   


下方属性用于配置什么时候释放连接:


这个时间参数你们可以自己定,希望能够帮到遇到同样问题的朋友。



Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn