Gabriel Santos
Gabriel Santos

Reputation: 4974

Disable max_user_connections limits

I have a project which returns the follow error

User already has more than 'max_user_connections' active connections

I know it is a MySQL error, and I can increase max_user_connections, but, I want to disable the verification of simultaneous accesses. Is it possible? How?

Thanks!

UPDATE

Current max_user_connections is 30 and max_connections is 300, and I don't persist connection.

Upvotes: 0

Views: 6355

Answers (1)

eabraham
eabraham

Reputation: 4164

Change the mysql config file.

Set max_user_connections=0.

Upvotes: 2

Related Questions