当我运行show status like 'Con%'
时,它会显示连接数,这是9972并且不断增长。这是一个活跃的连接数或连接数吗?
答案 0 :(得分:343)
根据the docs,它表示历史记录中的总数:
<强>
Connections
强>MySQL服务器的连接尝试次数(成功与否)。
您可以通过Threads_connected
状态变量查看活动连接的数量:
<强>
Threads_connected
强>当前打开的连接数。
mysql> show status where `variable_name` = 'Threads_connected';
+-------------------+-------+
| Variable_name | Value |
+-------------------+-------+
| Threads_connected | 4 |
+-------------------+-------+
1 row in set (0.00 sec)
...或通过show processlist
命令:
mysql> show processlist;
+----+------+-----------------+--------+---------+------+-------+------------------+
| Id | User | Host | db | Command | Time | State | Info |
+----+------+-----------------+--------+---------+------+-------+------------------+
| 3 | root | localhost | webapp | Query | 0 | NULL | show processlist |
| 5 | root | localhost:61704 | webapp | Sleep | 208 | | NULL |
| 6 | root | localhost:61705 | webapp | Sleep | 208 | | NULL |
| 7 | root | localhost:61706 | webapp | Sleep | 208 | | NULL |
+----+------+-----------------+--------+---------+------+-------+------------------+
4 rows in set (0.00 sec)
答案 1 :(得分:123)
SHOW STATUS WHERE `variable_name` = 'Threads_connected';
这将显示所有打开的连接。
答案 2 :(得分:14)
这是到目前为止服务器的总连接数。 要查找当前连接状态,您可以使用
mysqladmin -u -p extended-status | grep -wi 'threads_connected \ | threads_running'| awk'{print $ 2,$ 4}'
这将告诉你:
Threads_connected 12
Threads_running 1
Threads_connected: Number of connections
Threads_running: connections currently running some sql
答案 3 :(得分:8)
要查看更完整的列表,您可以运行:
show session status;
或
show global status;
请参阅this link以更好地了解其用法。
如果您想了解有关数据库的详细信息,可以运行:
status;
答案 4 :(得分:7)
您也可以
SHOW STATUS WHERE `variable_name` = 'Max_used_connections';
答案 5 :(得分:5)
为了检查允许的最大连接数,可以运行以下查询:
Logs viewer
要检查活动连接的数量,可以运行以下查询:
SHOW VARIABLES LIKE "max_connections";
希望有帮助。
答案 6 :(得分:1)
根据文档http://dev.mysql.com/doc/refman/5.0/en/server-status-variables.html#statvar_Connections
连接
MySQL服务器的连接尝试次数(成功与否)。
答案 7 :(得分:0)
应该是当前活动连接数。运行命令processlist
以确保。
参考网址:http://www.devdaily.com/blog/post/mysql/how-show-open-database-connections-mysql
编辑:Number of DB connections opened请看这里,这里描述了实际的线程数(连接数)!