当我运行像“Con%”这样的show status时,它会显示连接的数量,这是9972,并且不断增长。这是活动连接数还是总连接数?
当前回答
你也可以
SHOW STATUS WHERE `variable_name` = 'Max_used_connections';
其他回答
这是到目前为止到服务器的连接总数。 要查找当前连接状态,可以使用
Mysqladmin -u -p extended-status | grep -wi 'threads_connected\|threads_running' | awk '{打印$2,$4}'
这将告诉你:
Threads_connected 12
Threads_running 1
Threads_connected: Number of connections
Threads_running: connections currently running some sql
SHOW STATUS WHERE `variable_name` = 'Threads_connected';
这将显示所有打开的连接。
要查看允许的最大连接数,可以执行以下查询:
SHOW VARIABLES LIKE "max_connections";
使用实例查询当前活动连接数。
SHOW VARIABLES LIKE "max_used_connections";
希望能有所帮助。
根据doc http://dev.mysql.com/doc/refman/5.0/en/server-status-variables.html#statvar_Connections
连接
尝试连接MySQL服务器的次数(成功或失败)。
你也可以
SHOW STATUS WHERE `variable_name` = 'Max_used_connections';