MySQL Forums
Forum List  »  Connector/ODBC

Re: Every new machine blocks connection
Posted by: Bogdan Degtyariov
Date: June 12, 2023 08:50PM

Hi Vitor,

Does server error log have any information about blocking of the connections?
Maybe it could give you a clue of what is happening.
MySQL Server can block connections if it gets unsuccessful connection requests from the same address. After certain number of errors the connections for this address are blocked (check sysvar_max_connect_errors):

https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_max_connect_errors

Normally the blocked hosts can be reset by host cache flushing:

https://dev.mysql.com/doc/refman/8.0/en/host-cache.html#host-cache-flushing

This does not explain why all hosts are blocked though.
Could be a bug in the server, which is pretty old. Or there could be other contributing factors.
I would recommend starting from inspecting the server error log.

Thanks.

--
Best regards,
Bogdan Degtyariov

Options: ReplyQuote




Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.