[MySQL]最大接続数を取得する

2021年12月30日

1.MySQLへの新しい接続に使用される最大接続数値を表示します
>show global variables like 'max_connections’;
実行結果

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
Variable_name Value
max_connections 66
Variable_name Value max_connections 66
Variable_name	Value
max_connections	66

2.現在の接続に有効な最大接続数値を表示します
>show session variables like 'max_connections’;
実行結果

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
Variable_name Value
max_connections 66
Variable_name Value max_connections 66
Variable_name	Value
max_connections	66

3.MySQLのシステム変数の値を表示します
>show variables like 'max_connections’;
実行結果

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
Variable_name Value
max_connections 66
Variable_name Value max_connections 66
Variable_name	Value
max_connections	66

 

MySQL

Posted by arkgame