Text only
|
Text with Images
Developers Heaven Forum
DataBase => MySQL => Topic started by: admin on March 11, 2011, 04:11:41 PM
Title:
ERROR 1040 (00000): Too many connections
Post by:
admin
on
March 11, 2011, 04:11:41 PM
If you got this error:
ERROR 1040 (00000): Too many connections
you need to increase your max_connections as:
Code
Select
Expand
mysql> set @@global.max_connections=5000;
if you want to see its value run:
Code
Select
Expand
select @@global.max_connections;
Text only
|
Text with Images