问题:MySql Host is blocked unblock with 'mysqladmin flush-host

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 -h192.168.1.1 -P3308 -uroot -prootpwd;

第二步也可以在数据库中进行,命令如下:flush hosts;

郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。