Created
September 15, 2023 13:42
-
-
Save BSN32/cf7d51d46d3f09f04e41813a561f8235 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Default 100 if you access this limit you will be blocked | |
SHOW VARIABLES LIKE 'max_connect_errors'; | |
+--------------------+-------+ | |
| Variable_name | Value | | |
+--------------------+-------+ | |
| max_connect_errors | 100 | | |
+--------------------+-------+ | |
1 row in set (0.00 sec) | |
# increase the limits (think about what you done) | |
SET GLOBAL max_connect_errors=10000; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment