[MySQL]最大接続数を取得する
1.MySQLへの新しい接続に使用される最大接続数値を表示します
>show global variables like 'max_connections’;
実行結果
Variable_name Value max_connections 66
2.現在の接続に有効な最大接続数値を表示します
>show session variables like 'max_connections’;
実行結果
Variable_name Value max_connections 66
3.MySQLのシステム変数の値を表示します
>show variables like 'max_connections’;
実行結果
Variable_name Value max_connections 66