max_connect_errors是一个MySQL中与安全有关的计数器值,它负责阻止过多尝试失败的客户端以防止暴力破解密码的情况。max_connect_errors的值与性能并无太大关系。
(1)临时解决方法:
flush hosts
主要是用来清空主机缓存表
(2)永久解决方法:
默认情况下,my.cnf文件中可能没有此行,如果需要设置此数值,手动添加即可。
vi /etc/my.cnf
max_connect_errors = 1000
配置说明
当此值设置为10时,意味着如果某一客户端尝试连接此MySQL服务器,但是失败(如密码错误等等)10次,则MySQL会无条件强制阻止此客户端连接。
如果希望重置此计数器的值,则必须重启MySQL服务器或者执行 mysql> flush hosts; 命令。
当这一客户端成功连接一次MySQL服务器后,针对此客户端的max_connect_errors会清零。
message from server: "Host '192.168.1.211' is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts'"
原因:
同一个ip在短时间内产生太多中断的数据库连接而导致的阻塞; (超过mysql数据库max_connection_errors的最大值)
max_connect_errors-MYSQL错误解决_51CTO博客_mysql is not allow to connect
1、提高允许的max_connection_errors数量(治标不治本):
① 进入Mysql数据库查看max_connection_errors:
show variables like 'max_connect_errors';
② 修改max_connection_errors的数量为1000:
set global max_connect_errors = 1000;
③ 查看是否修改成功:
show variables like 'max_connect_errors';
如果上边不行可以试试:
show variables like '%max_connection_errors%';
2、使用mysqladmin flush-hosts 命令清理一下hosts文件(不知道mysqladmin在哪个目录下可以使用命令查找:whereis mysqladmin);
① 在查找到的目录下使用命令修改:mysqladmin --socket=/tmp/kkimdb.sock --port=3306 -uhyman -p flush-hosts
备注: 配置有master/slave主从数据库的要把主库和从库都修改一遍的(我就吃了这个亏明明很容易的几条命令结果折腾了大半天);
mysql> flush hosts; 也可以
欢迎来撩 : 汇总all