假设本人现在的max_connections=100,aborted_clients=10,是不是本人现在能用的链接数只有90个了。要想把这10个aborted_clients取掉是不是只能重启数据库?
刚注册的号,分不多,忘大家帮帮忙!
刚注册的号,分不多,忘大家帮帮忙!
解决方案
5
aborted_clients 是由于客户端连接没有本人释放,而由mysql强制关闭的连接数,是系统变量,会变化,你要变为0,那就重启服务器吧
10
LZ你好:
Max Connections表示的是最大链接数限制,而Aborted Clients的官方解释是:
The number of connections that were aborted because the client died without closing the connection properly
意味着客户端成功建立连接,但是很快就断开连接或被终止了,这种情况一般发生在网络不稳定的环境中,
主要的可能性如下:
1、客户端没有主动关闭mysql连接mysql_close()
2、wait_timeout设置很短被mysql干掉了
3、客户端由于某些原因被干掉了
要想让aborted Clients变为0,最快最方便的方法就是重启数据库
Max Connections表示的是最大链接数限制,而Aborted Clients的官方解释是:
The number of connections that were aborted because the client died without closing the connection properly
意味着客户端成功建立连接,但是很快就断开连接或被终止了,这种情况一般发生在网络不稳定的环境中,
主要的可能性如下:
1、客户端没有主动关闭mysql连接mysql_close()
2、wait_timeout设置很短被mysql干掉了
3、客户端由于某些原因被干掉了
要想让aborted Clients变为0,最快最方便的方法就是重启数据库
5