SQLSTATE[HY000] [1203] User xxx already has more than ‘max_user_connections’ active connections

Notice: This thread is very old.
silviustan
Member | 22
+
0
-

Hi,

Does anyone know how to solve this issue? The problem is that the shared hosting where the app should run is limited to max_user_connections = 10 which is lower than Nette Database needs to create its cache files at first run.

I'm wondering if I can use some cache files from localhost to make nette to use lower resources on the shared hosting, or a way to close connections but I suppose that Nette Database is doing that already…

Thanks!

CZechBoY
Member | 3608
+
+1
-

Nette uses always one connection per database configuration.

Last edited by CZechBoY (2017-01-05 09:11)

silviustan
Member | 22
+
0
-

CZechBoY wrote:

Nette uses always one connection per database configuration.

Thank you!

Then probably the error is because there is another app built on different framework that is using the same mysql user. I will check that.