概述
MySql Host is blocked because of many connection errors 解决方法
环境:linux,mysql5.7.15
应用日志提示错误:
create connection error, url: jdbc:mysql://xxx.xxx.xxx.xxx:3306/xxxx?useUnicode=true&characterEncoding=UTF-8, errorCode 1129, state HY000java.sql.SQLException: null, message from server: “Host ‘10.30.174.183’ is blocked because of many connection errors; unblock with ‘mysqladmin flush-hosts’”
原因:
同一个ip在短时间内产生太多(超过mysql数据库max_connection_errors的最大值)中断的数据库连接而导致的阻塞;
解决方法:
1、提高允许的max_connect_errors数量(这种方法不彻底,后期还可能导致异常出现):
进入Mysql数据库查看max_connect_errors: show variables like ‘max_connect_errors’;
修改max_connect_errors的数量为1000: set global max_connect_errors = 1000;
查看是否修改成功:show variables like 'max_connect_errors';
2、使用mysqladmin flush-hosts 命令清理一下hosts文件
whereis mysqladmin查找mysqladmin的路径
使用命令修改:
/usr/bin/mysqladmin flush-hosts -h192.168.1.121 -uroot -p
备注:
配置有master/slave主从数据库的要把主库和从库都修改一遍
第二步也可以在数据库中进行,命令如下:flush hosts;
mysql> flush hosts;
为防止原文失效,转载此贴。原文链接:https://www.cnblogs.com/wclwcw/p/7645298.html
最后
以上就是还单身小鸭子为你收集整理的MySql Host is blocked because of many connection errors 解决方法的全部内容,希望文章能够帮你解决MySql Host is blocked because of many connection errors 解决方法所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复