Mysql
 sql >> Database >  >> RDS >> Mysql

Come aumentare le connessioni MySQL (max_connections)?

Se hai bisogno di aumentare le connessioni MySQL senza riavviare MySQL, fai come di seguito

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)

Queste impostazioni cambieranno al riavvio di MySQL.

Per modifiche permanenti aggiungi la riga sottostante in my.cnf e riavvia MySQL

max_connections = 150