MySQLデフォルト接続最大数(max_connections)を確認、変更する

1.max_connectionsを確認
mysql> show variables like '%%max_connections’;
+———————–+——-+
| Variable_name | Value |
+———————–+——-+
| extra_max_connections | 1 |
| max_connections | 128 |
+———————–+——-+

2.変更方法1

mysql> set GLOBAL max_connections=1000;
Query OK, 0 rows affected (0.00 sec)

mysql> show variables like '%max_connections%’;
+———————–+——-+
| Variable_name | Value |
+———————–+——-+
| extra_max_connections | 1 |
| max_connections | 1000 |
+———————–+——-+
3.変更方法2
my.iniまたはmy.cnfを変更
修正前:max_connections=128
修正後:max_connections=1000
MySQLが再起動
4.注意事項:
MySQLサーバーに接続最大数16384です。

MySQL

Posted by arkgame