1040 is the MySQL error for when you've got too many connections open
to the database server. MySQL's docs on this are here:

http://dev.mysql.com/doc/refman/5.0/en/too-many-connections.html

You have one or more of these happening:
1) You have too many Apache children for the MySQL's max_connections
setting. You need to adjust the max_connections to match the number of
possible Apache child processes.

2) Something is stalling mysql threads. Use the SHOW PROCESSLIST
command to see what threads are around.

--Simon


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to