max_user_connections exceeded

Seeing max_user_connections errors in logs

The log message will look like this:

--> PHP Warning: mysqli_connect(): (HY000/1203): User user1 already has more than 'max_user_connections' active connections in /home/client/public_html/includes/classes/db/mysql/query_factory.php on line 63.

This message can happen when you’re getting a flood of simultaneous connections to your site that is exceeding your server’s capacity.

Visitors hitting your site and triggering that error would have seen a blank page. (or whatever a 500-error page looks like for your server).

Web applications like Zen Cart use only a single MySQL “user” to connect to the database, and most hosts configure max_user_connections to be big enough to handle typical traffic load. Traffic load includes all visits at any given second, including “you”, your customers, your visitors-who-are-not-yet-customers, search engine bots, and anybody trying bad things on your site.

Possible root causes of this error:

  • Sending an email promotion and everyone opens the email and clicks on a link to your site from inside that email “all at the same time”, causing a “flood” of simultaneous traffic larger than the max_user_connections setting

  • Disobedient Search Engine spiders/crawlers. Normally bots crawl at a slow enough pace to not overload your site. Obedient crawlers will read a robots.txt file you can place on your site to tell each search engine what rules you want them to follow, such as how much time to wait between hits. Only the good crawlers will obey these rules, so it’s not a guaranteed fix.

  • Malicious actors sending bad traffic.

Things to check:

  • The IP address in the log can be used to lookup where it comes from in a Whois database. Knowing this may give you clues about the authenticity of whatever they were attempting to do. If the problem is chronic, you might consider IP blocking, because there’s no good reason for the same IP to be making multiple simultaneous hits that floods your server. But, be careful: a legit customer could come along while a bad flood has overloaded things and the legit customer would show up in the log, so you don’t want to block the wrong person!

Options:

  • If you think there’s enough demand for more legit traffic, you could ask whether your hosting company will increase the max_user_connections setting to something higher. (You will likely need to upgrade to a higher, more expensive tier of service for them to agree.)

  • You could block IP addresses of bad traffic after inspecting each IP in the logs to be sure it makes sense to block them.

  • You could configure the robots.txt file to tell bots to crawl more slowly - http://www.robotstxt.org

  • See Abuse and Spam and Blocking Traffic for suggestions for dealing with bad traffic.

  • If you are on a VPS, you can use WHM’s Edit SQL Configuration tool to raise the Max Connections value.




Still have questions? Use the Search box in the upper right, or try the full list of FAQs. If you can't find it there, head over to the Zen Cart support forum and ask there in the appropriate subforum. In your post, please include your Zen Cart and PHP versions, and a link to your site.

Is there an error or omission on this page? Please post to General Questions on the support forum. Or, if you'd like to open a pull request, just review the guidelines and get started. You can even PR right here.
Last modified March 26, 2023 by Scott C Wilson (a65d95b).