mysql> show variables like 'max_connections';
+-----------------+-------+
| Variable_name | Value |
+-----------------+-------+
| max_connections | 100 |
+-----------------+-------+
1 row in set (0.00 sec)
最大接続数を変更する
mysql> set global max_connections = 200;
Query OK, 0 rows affected (0.00 sec)
コメント