MySql exception for many connections

System.Web.Services.Protocols.SoapException:

Server was unable to process request. ---> MySqlException raised in OpenConnection, 
Host is blocked because of many connection errors; 
unblock with 'mysqladmin flush-hosts' 

--- End of internal exception stack trace ---

Do you have an idea why this exception appears?

+3
source share
1 answer

You can try setting a higher value for max_connections and max_connect_errors in my.cnf.

You can see more information about this error on blocked-host and communication-errors

+4
source

Source: https://habr.com/ru/post/1791616/


All Articles