mysql连接出错 mysqladmin flush-hosts 解决方法(mysqladmin 刷新主机解除阻塞)
短信预约 -IT技能 免费直播动态提醒
在做redis redlock测试的时候用jmeter发post请求,springboot开始报错 Host is blocked because of many connection errors; unblock with ‘mysqladmin flush-hosts’
这个的意思是当一个ip连续多次出现错误后,mysql就会 中断这个ip的连接,抛出mysqladmin flush-host
同一个ip在短时间内产生太多(超过mysql数据库max_connect_errors的最大值)中断的数据库连接而导致的阻塞。
解决方法:
1、修改max_connect_errors数量
1)提高允许的max_connect_errors数量(临时修改)
#修改max_connection_errors的数量为1000mysql -h 你的ip -P 你的端口 -uroot -p你的密码set global max_connect_errors=10000;set global max_connections = 200;show variables like "max_connections";show variables like "max_connect_errors";
mysql> set global max_connect_errors=10000; set global max_connections = 200;Query OK, 0 rows affected (0.04 sec)Query OK, 0 rows affected (0.04 sec)mysql> show variables like "max_connections"; show variables like "max_connect_errors";+-----------------+-------+| Variable_name | Value |+-----------------+-------+| max_connections | 200 |+-----------------+-------+1 row in set (0.06 sec)+--------------------+-------+| Variable_name | Value |+--------------------+-------+| max_connect_errors | 10000 |+--------------------+-------+1 row in set (0.05 sec)
这只是临时修改,重启MySQL后会失效。
2)如果需要永久生效,需要在配置文件中修改才行!
#登陆进入Mysql数据库查看max_connect_errorsmysql -h 你的ip -P 你的端口 -uroot -p你的密码show variables like '%max_connect_errors%';#max_connect_errors 默认是10 或 100,修改方法如下:vim /etc/my.cnf #mysql配置文件路径,根据自己的改;windows打开my.ini文件添加,docker进入容器修改同linux后重启容器max_connect_errors=10000#添加这一行直接拉满#重启MySQL,修改才会生效!#linuxservice mysqld restart /etc/init.d/mysqld restart#windows net stop mysql #(mysql是服务名)net start mysql#dockerdocker restart 容器id
2、使用mysqladmin flush-hosts 清理hosts文件
使用mysqladmin flush-hosts 命令清理一下hosts文件
如果不知道mysqladmin在哪个目录下,可以使用命令查找:which mysqladmin
/usr/bin/mysqladmin flush-hosts -h 你的ip -P 你的端口 -uroot -p你的密码#配置有master/slave主从数据库的要把主库和从库都修改一遍的#在数据库中进行,执行命令如下:flush hosts;
来源地址:https://blog.csdn.net/crayon0/article/details/127299773
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341