赞
踩
mysql连接出现如图
错误: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文件:
在查找到的目录下使用命令修改:/usr/bin/mysqladmin flush-hosts -h192.168.1.1 -P3308 -uroot -prootpwd;
备注:
其中端口号,用户名,密码都可以根据需要来添加和修改;
配置有master/slave主从数据库的要把主库和从库都修改一遍的。
最简单的方法:第二也可以在数据库中进行,命令如下:flush hosts;
执行:mysqladmin flush-hosts -h 127.0.0.1 -u[用户名] -p命令
然后输入密码。
或者 在 linux 端,mysql mysql -uroot -p
输入root密码,进入mysql,执行 flush hosts; 重新连接即可
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。