码迷,mamicode.com
首页 > 数据库 > 详细

mysql Host ‘XXXXXX’ is blocked because of many connection errors

时间:2014-10-02 20:37:23      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   ar   sp   div   art   

mysql Host ‘XXXXXX’ is blocked because of many connection errors

  ERROR 1129 (00000): Host ‘XXXXXX’ is blocked because of many connection errors; unblock with ‘mysqladmin flush-hosts’
查了下资料
  这说明mysqld已经得到了大量(max_connect_errors)的主机’hostname’的在中途被中断了的连接请求。在 max_connect_errors次失败请求后,mysqld认定出错了(象来字一个黑客的攻击),并且阻止该站点进一步的连接,直到某人执行命令 mysqladmin flush-hosts。
缺省地,mysqld在10个连接错误后阻塞一台主机。你可以通过象这样启动服务器很容易地调整它: set global max_connect_errors=1000;
注意,对给定的主机,如果得到这条错误消息,你应该首先检查该主机的TCP/IP连接有没有问题。如果你的TCP/IP连接不在运行,增加max_connect_errors变量的值对你也不会有帮助!

例:

 

/usr/local/mysql/bin/mysqladmin flush-host -h 192.168.50.1 -uroot

 

附:英文
ERROR 1129 (00000): Host ” is blocked because of many connection errors. Unblock with ‘mysqladmin flush-hosts’

If you get the following error, it means that mysqld has received many connect requests from the host ‘host_name’ that have been interrupted in the middle:
By default, mysqld blocks a host after 10 connection errors. You can adjust the value by starting the server like this
> mysqld_safe –max_connect_errors=10000 &Host

 

mysql Host ‘XXXXXX’ is blocked because of many connection errors

标签:style   blog   color   io   os   ar   sp   div   art   

原文地址:http://www.cnblogs.com/mjorcen/p/4004319.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!