MySQL error

Here is a list of the most common error messages concerning your database:

Access denied for user user@domain

This means that you are using an incorrect login and/or password and/or an incorrect database server address.
Solution: Check your database connection settings from your customer area.

Can't connect to local MySQL server through socket

This means that you did not set the database server address correctly in your connection script. Solution: Check your database connection settings from your customer area.

User user reached max_user_connection limit

This error is due to the fact that you have reached the maximum allowed number of simultaneous connections to your database.
If you have a lot of traffic, it is better to open the SQL connection only when you are going to use it and then close it (with mysql_close()) once you no longer need to interact with the database.
Also, persistent connections (made with mysql_pconnect()) should be avoided.

IT IS NOT POSSIBLE TO CUSTOMIZE THE NAME OF YOUR DATABASE EXCEPT FOR SHARED OFFERS WITH THE DEDICATED SQL OPTION

IT IS NOT POSSIBLE TO CHANGE THE NAME OF A DATABASE EITHER, EVEN FOR SHARED OFFERS WITH THE DEDICATED SQL OPTION

Limit of simultaneous connections to a database
MUTU START 4 simultaneous connections
MUTU BOOST 10 simultaneous connections
MUTU MAX 20 simultaneous connections
PERFORMANCE You can set the limit of your choice, although it is recommended not to exceed 100 simultaneous connections because you are limited by the resources of this offer
Updated on 10 October 2022

Related Articles