Mysql出现“连接太多”错误解决办法
mysql 出现的问题message from server: “Host ‘XXX’ is blocked because of many connection errors; unblock with ‘mysqladmin flush-hosts'”
产生的原因:
同一个ip在短时间内产生太多数据库连接而又不能及时断开连接从而导致的阻塞;即超过mysql数据库max_connection_errors的最大值
解决方法:
1、提高允许的max_connection_errors数量,前提是你的Mysql数据库服务器能够承受
进入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在哪个目录下可以使用命令查找:sudo / -name mysqladmin);
① 在查找到的目录下使用命令修改:mysqladmin flush-hosts -h102.94.65.14 -uroot -prootpwd;
备注:
用户名,密码,ip地址都可以根据需要来添加和修改;
如果端口号不是3306,需要在-h参数后面加上-P端口参数
配置有master/slave主从数据库的要把主库和从库都修改一遍的;
第二步也可以在数据库中进行,命令如下:flush hosts;
3、如果使用的RDS类似的云数据库一般都可以在控制面板上面修改参数配置,其实也可以在本机用mysqladmin远程登录修改,完成不用重启mysql服务