Als u MySQL-verbindingen moet verhogen zonder MySQL-herstart, doe dan zoals hieronder
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)
Deze instellingen veranderen bij MySQL Restart.
Voeg voor permanente wijzigingen de onderstaande regel toe aan my.cnf en start MySQL opnieuw
max_connections = 150