Mysql 檢視連線數,狀態 最大併發數

2021-09-07 14:26:51 字數 856 閱讀 9907

show status like

'%max_connections%

'; ##mysql最大連線數

set global max_connections=

1000

##重新設定

show variables

like

'%max_connections%

'; ##查詢資料庫當前設定的最大連線數

show global status

like

'max_used_connections

'; ##伺服器響應的最大連線數

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;

Mysql 檢視連線數,狀態 最大併發數

show status like max connections mysql最大連線數 set global max connections 1000 重新設定 show variables like max connections 查詢資料庫當前設定的最大連線數 show global statu...

Mysql 檢視連線數,狀態 最大併發數

show status like max connections mysql最大連線數 set global max connections 1000 重新設定 show variables like max connections 查詢資料庫當前設定的最大連線數 show global statu...

Mysql 檢視連線數,狀態

命令 show processlist 如果是root帳號,你能看到所有使用者的當前連線。如果是其它普通帳號,只能看到自己占用的連線。show processlist 只列出前100條,如果想全列出請使用show full processlist mysql show processlist 命令 ...