程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> 查詢Mysql狀態

查詢Mysql狀態

編輯:MySQL綜合教程

查詢Mysql狀態  

#查詢數據庫連接
show full  processlist;
show status like '%Max_used_connections%';
show status like '%Threads_connected%';#當前連接數
show status like '%table_lock%';#表鎖定
show status like 'innodb_row_lock%';#行鎖定
show status like '%qcache%'; #查詢緩存情況
show variables like "%query_cache%";
SHOW STATUS LIKE 'Qcache%'; 
show variables like "%binlog%";
show status like 'Aborted_clients';#由於客戶沒有正確關閉連接已經死掉,已經放棄的連接數量
show variables like '%max_connections%';
show variables like '%timeout%';
show variables like 'log_%'; #查看日志是否啟動 

 


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved