notes

Increase MySQL Connection Limit

MySQL’s default configuration sets the maximum simultaneous connections to 100. If you need to increase it, you can do it fairly easily:

# vi /etc/my.cnf
max_connections = 250
Restart MySQL once you’ve made the changes and verify with:

echo "show variables like 'max_connections';" | mysql