回答:
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)
これまでのサーバーへの接続の総数です。あなたが使用できる現在の接続状態を見つけるために
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
より完全なリストを表示するには、次のコマンドを実行できます。
show session status;
または
show global status;
使用法をよりよく理解するには、このリンクを参照してください。
データベースの詳細を知りたい場合は、次のコマンドを実行できます。
status;
あなたもすることができます
SHOW STATUS WHERE `variable_name` = 'Max_used_connections';
max_used_connections
も便利です
ドキュメントのとおりhttp://dev.mysql.com/doc/refman/5.0/en/server-status-variables.html#statvar_Connections
接続
MySQLサーバーへの接続試行(成功または失敗)の数。
現在アクティブな接続の数である必要があります。コマンドprocesslist
を実行して確認します。
参照用のURL:http : //www.devdaily.com/blog/post/mysql/how-show-open-database-connections-mysql
編集:開いているDB接続の数ここを見てください、実際のスレッド(接続)の数はここに記述されています!
show status like '%onn%';
は非常に便利なクエリです。