linux 檢視MySQL的當前連線數
或者是登入到mysql客戶端後,使用status命令也能獲得thread連線數以及當前連線的id。
[[email protected] bin]# mysql -h localhost -u root -p123456 Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 96718 Server version: 5.0.84 Source distribution Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement. mysql> status -------------- mysql Ver 14.12 Distrib 5.0.84, for redhat-linux-gnu (x86_64) using readline 5.1 Connection id: 96718 Current database: Current user:
[email protected] SSL: Not in use Current pager: stdout Using outfile: ‘‘ Using delimiter: ; Server version: 5.0.84 Source distribution Protocol version: 10 Connection: Localhost via UNIX socket Server characterset: latin1 Db characterset: latin1 Client characterset: latin1 Conn. characterset: latin1 UNIX socket: /var/lib/mysql/mysql.sock Uptime: 1 day 17 hours 5 min 29 sec Threads: 19 Questions: 8942485 Slow queries: 0 Opens: 3496 Flush tables: 1 Open tables: 64 Queries per second avg: 60.451 --------------
命令: show processlist; 或者 # mysqladmin -uroot -p密碼 processlist 如果是root帳號,你能看到所有使用者的當前連線。如果是其它普通帳號,只能看到自己佔用的連線。 show processlist;只列出前100條,如果想全列出請使用show full processlist; mysql> show processlist; 命令: show status; 或者 # mysqladmin -uroot -p密碼 status Aborted_clients 由於客戶沒有正確關閉連線已經死掉,已經放棄的連線數量。 Aborted_connects 嘗試已經失敗的MySQL伺服器的連線的次數。 Connections 試圖連線MySQL伺服器的次數。 Created_tmp_tables 當執行語句時,已經被創造了的隱含臨時表的數量。 Delayed_insert_threads 正在使用的延遲插入處理器執行緒的數量。 Delayed_writes 用INSERT DELAYED寫入的行數。 Delayed_errors 用INSERT DELAYED寫入的發生某些錯誤(可能重複鍵值)的行數。 Flush_commands 執行FLUSH命令的次數。 Handler_delete 請求從一張表中刪除行的次數。 Handler_read_first 請求讀入表中第一行的次數。 Handler_read_key 請求數字基於鍵讀行。 Handler_read_next 請求讀入基於一個鍵的一行的次數。 Handler_read_rnd 請求讀入基於一個固定位置的一行的次數。 Handler_update 請求更新表中一行的次數。 Handler_write 請求向表中插入一行的次數。 Key_blocks_used 用於關鍵字快取的塊的數量。 Key_read_requests 請求從快取讀入一個鍵值的次數。 Key_reads 從磁碟物理讀入一個鍵值的次數。 Key_write_requests 請求將一個關鍵字塊寫入快取次數。 Key_writes 將一個鍵值塊物理寫入磁碟的次數。 Max_used_connections 同時使用的連線的最大數目。 Not_flushed_key_blocks 在鍵快取中已經改變但是還沒被清空到磁碟上的鍵塊。 Not_flushed_delayed_rows 在INSERT DELAY佇列中等待寫入的行的數量。 Open_tables 開啟表的數量。 Open_files 開啟檔案的數量。 Open_streams 開啟流的數量(主要用於日誌記載) Opened_tables 已經開啟的表的數量。 Questions 發往伺服器的查詢的數量。 Slow_queries 要花超過long_query_time時間的查詢數量。 Threads_connected 當前開啟的連線的數量。 Threads_running 不在睡眠的執行緒數量。 Uptime 伺服器工作了多少秒。