Læs max_connections dokument for at løse dit problem
Først:Tjek din aktuelle database max_connection variabel
SHOW VARIABLES LIKE 'max_connections';
+-----------------+-------+
| Variable_name | Value |
+-----------------+-------+
| max_connections | 151 |
+-----------------+-------+
Prøv derefter at øge parameteren max_connection enten med en kørende kommando som:
SET GLOBAL max_connections = 300;
Eller indstil denne parameter i my.cnf, der findes på /etc/my.cnf
vi /etc/my.cnf
max_connections = 300
Til sidst:Genstart mysql-tjenesten