I want to block a remote server to access MySQL and want to get this error "blocked because of many connection errors; unblock with 'mysqladmin flush-hosts'" .
How do i block user in such manner in MySQL ? DO i need to hit the server for connection from remote server several times until it gets blocked ? Or what can be done.
Also which parameter in MySQL database does the field change when user is blocked in such case ?
Can anyone help ?
You could revoke the privileges of your users to connect from specific IPs.
OR
If you reduce the privileges to USERNAME@localhost, only local connections are possible. Just make sure you actually have at least one local entry (username@localhost, [email protected], username@[local IPv6]) left, or you wont be able to login again.
make sure to apply the privileges after you change them by calling
To restrict the amount of connections per user@host combination, you may add additional settings to the GRANT command:
More information can be found on the mysql webpage (Setting Account Resource Limits and GRANT Syntax)