Author Topic: ERROR 1040 (00000): Too many connections  (Read 5433 times)

Offline admin

  • Administrator
  • Sr. Member
  • *****
  • Posts: 296
    • View Profile
ERROR 1040 (00000): Too many connections
« 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;