MySQL: ERROR 1040: Too many connections
If you run a fairly busy and/or badly configured MySQL server, you may receive something like this when attempting to connect:
# mysql
ERROR 1040: Too many connections
MySQL is telling you that it is handling the maximum connections that you have configured it to handle. By default, MySQL will handle 100 connections simultaneously. This is [...]