MySQLを再起動せずにMySQL接続を増やす必要がある場合は、以下のようにしてください
mysql> show variables like 'max_connections';
+-----------------+-------+
| Variable_name | Value |
+-----------------+-------+
| max_connections | 100 |
+-----------------+-------+
1 row in set (0.00 sec)
mysql> SET GLOBAL max_connections = 150;
Query OK, 0 rows affected (0.00 sec)
mysql> show variables like 'max_connections';
+-----------------+-------+
| Variable_name | Value |
+-----------------+-------+
| max_connections | 150 |
+-----------------+-------+
1 row in set (0.00 sec)
これらの設定は、MySQLの再起動時に変更されます。
永続的な変更については、my.cnfに以下の行を追加し、MySQLを再起動してください
max_connections = 150