Developers Heaven Forum

DataBase => MySQL => Topic started by: admin on March 11, 2011, 11:11:41 PM

Title: ERROR 1040 (00000): Too many connections
Post by: admin on March 11, 2011, 11:11:41 PM
If you got this error:
ERROR 1040 (00000): Too many connections
you need to increase your max_connections as:

Code: [Select]
mysql> set @@global.max_connections=5000;
if you want to see its value run:
Code: [Select]
select @@global.max_connections;