共计 726 个字符,预计需要花费 2 分钟才能阅读完成。
现象:
程序会不定时的出现连接错误,问题 bug 的异常信息如下:
The last packet successfully received from the server was 116 milliseconds ago. The last packet sent successfully to the server was 115 milliseconds ago.
Java.sql.SQLException: No database selected
但通过客户端 sqlyog/navicat 连接均为正常。
———————————————————————-
另:maxscale1.4.3 有时还会出现挂起现象,4006 端口直接关闭。后我们用了 watch 命令后台跑监控。
watch -d /bin/bash /root/sh/restart_maxsacle.sh
1234567 #!/bin/bash
netstat -ntlp | grep maxscale | grep 4006 > /dev/null 2>&1
if [$? -eq 1];then
/etc/init.d/maxscale start
fi
解决:5.6 以下可以直接在 url 上配置:autoReconnect=true
对于 5.6 以上的只能在 jdbc 的链接池里设置:
第一个设置成 ture, 超时自动链接,对于 mysql 要把第二个设置成 false,不启用缓存。
以上是开发需要注意的都是一些基本的配置。
其目的为:每次归还连接时执行 select ‘x’ 检测连接是否有效。
本文永久更新链接地址 :http://www.linuxidc.com/Linux/2016-11/136970.htm