Mysql數據庫 查看鏈接數,狀態 最大併發數設置

show status like '%max_connections%'; ##mysql最大鏈接數
set global max_connections=1000 ##從新設置
show variables like '%max_connections%'; ##查詢數據庫當前設置的最大鏈接數mysql

show global status like 'Max_used_connections'; ##服務器響應的最大鏈接數sql

show status like 'Threads%';數據庫

Variable_name Value
Threads_cached 0 ##mysql管理的線程池中還有多少能夠被複用的資源
Threads_connected 152 ##打開的鏈接數
Threads_created 550 ##表示建立過的線程數,若是發現Threads_created值過大的話,代表MySQL服務器一直在建立線程,這也是比較耗資源,能夠適當增長配置文件中thread_cache_size值,查詢服務器
Threads_running 1 ##激活的鏈接數,這個數值通常遠低於connected數值,準確的來講,Threads_running是表明當前併發數服務器

show variables like 'thread_cache_size';
set global thread_cache_size=60;併發

相關文章
相關標籤/搜索