共计 1028 个字符,预计需要花费 3 分钟才能阅读完成。
行业资讯
数据库
MySQL 数据库
怎么解决 mysql 中 MySql Host is blocked because of many connection errors 错误
本篇内容介绍了“怎么解决 mysql 中 MySql Host is blocked because of many connection errors 错误”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让丸趣 TV 小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
错误:Host is blocked because of many connection errors; unblock with mysqladmin flush-hosts
原因:
同一个 ip 在短时间内产生太多(超过 mysql 数据库 max_connection_errors 的最大值)中断的数据库连接而导致的阻塞;
解决方法:
1、提高允许的 max_connection_errors 数量(治标不治本):
① 进入 Mysql 数据库查看 max_connection_errors: show variables like %max_connection_errors%
② 修改 max_connection_errors 的数量为 1000: set global max_connect_errors = 1000;
③ 查看是否修改成功:show variables like %max_connection_errors%
2、使用 mysqladmin flush-hosts 命令清理一下 hosts 文件(不知道 mysqladmin 在哪个目录下可以使用命令查找:whereis mysqladmin);
① 在查找到的目录下使用命令修改:/usr/bin/mysqladmin flush-hosts -h292.168.1.1 -P3308 -uroot -prootpwd;
备注:
其中端口号,用户名,密码都可以根据需要来添加和修改;
配置有 master/slave 主从数据库的要把主库和从库都修改一遍的(我就吃了这个亏明明很容易的几条命令结果折腾了大半天);
第二步也可以在数据库中进行,命令如下:flush hosts;
“怎么解决 mysql 中 MySql Host is blocked because of many connection errors 错误”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注丸趣 TV 网站,丸趣 TV 小编将为大家输出更多高质量的实用文章!