Pokud potřebujete zvýšit připojení MySQL bez restartu MySQL, postupujte takto
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)
Tato nastavení se změní při restartu MySQL.
Pro trvalé změny přidejte pod řádek my.cnf a restartujte MySQL
max_connections = 150