我在服务器中面临一个问题,其中几个连接超时。以下是错误文件中的错误:-
130401 8:07:06 [Warning] Aborted connection 1111111to db: 'ABC' user: 'u1' host: '1.1.1.1' (Got timeout reading communication packets)
130401 8:10:44 [Warning] Aborted connection 1712056 to db: 'XYZ' user: 'u2' host: '2.2.2.2.' (Got an error reading communication packets)
下面是配置
wait_timeout= 900
max_connections | 500
max_packet_size 256M
虽然历史最大连接数尚未超过 320,但我们使用命令看到许多连接处于 TIME_WAIT 中:
netstat -anlp | grep :3306 | grep TIME_WAIT -wc; date
299
在应用程序端,如果客户端空闲超过 600 秒,客户端将关闭连接。
这意味着许多连接处于等待状态。同时,服务器不忙。这意味着它没有处于锁定状态。
有人可以帮我吗?提前谢谢。
斯里达尔。