zoukankan      html  css  js  c++  java
  • mysql Host ‘XXXXXX’ is blocked because of many connection errors

    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
  • 相关阅读:
    DIY组装机
    伯努利数学习笔记的说...
    心得分享 | 软件研发效能(1)
    开发板烧录教程
    解决Windows7/10系统连接网线后显示“未识别的网络”的问题
    雷达扫描
    经验学习
    1045 Access denied for user 'root'@'localhost' (using password:YES)
    json格式化工具
    mysql安装出现error Nr.1045
  • 原文地址:https://www.cnblogs.com/mjorcen/p/4004319.html
Copyright © 2011-2022 走看看