MySQL Server has an aborted_connect status counter which will show you the number of failed attempts to establish a new connection. The manual describes potential causes as follows:
- A client does not have privileges to connect to a database.
- A client uses an incorrect password.
- A connection packet does not contain the right information.
- It takes more than
connect_timeout
seconds to get a connect packet. See Section 5.1.4, “Server System Variables”.
It goes on to make the following statement:
If …
[Read more]