mysql error number 1129 solution

mysql error number 1129 solution

SQLyog connects to mysql error number 1129:

mysql error 1129: Host 'bio.chip.org' is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts'.

Solution:

cmd command line:

mysqladmin flush-host -h 127.0.0.1 -u root -p123456

solve.

Extended Learning

Error: Host is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts'

reason:

The same IP generates too many interrupted database connections (exceeding the maximum value of max_connection_errors of MySQL database) in a short period of time, causing blocking;

Solution:

1. Increase the number of max_connection_errors allowed (only treats the symptoms but not the root cause):

① Enter the Mysql database to view max_connection_errors: show variables like '%max_connection_errors%';

② Change the number of max_connection_errors to 1000: set global max_connect_errors = 1000;

③ Check whether the modification is successful: show variables like '%max_connection_errors%';

2. Use the mysqladmin flush-hosts command to clean up the hosts file (if you don't know which directory mysqladmin is in, you can use the command: whereis mysqladmin to find it);

① Use the command to modify in the found directory: /usr/bin/mysqladmin flush-hosts -h192.168.1.1 -P3308 -uroot -prootpwd;

Remark:

The port number, user name, and password can be added and modified as needed;

If you have configured a master/slave database, you need to modify both the master and slave databases (I suffered this loss. It took me half a day to finish a few simple commands).

The second step can also be performed in the database, the command is as follows: flush hosts;

Most of the Baidu results are like this, but it still doesn't work for my database connection. After multiple verifications, I found that I needed to add the host address, that is, execute: mysqladmin flush-hosts -h 127.0.0.1 -uroot -p command

The above are the detailed methods and steps for this solution. Thank you for your support of 123WORDPRESS.COM.

<<:  VMware ESXi 6.0 and deployment of virtual machine installation tutorial (picture and text)

>>:  Mini Program natively implements left-slide drawer menu

Recommend

Example of creating table statements for user Scott in MySQL version of Oracle

Overview: Oracle scott user has four tables, whic...

MySQL Basic Tutorial Part 1 MySQL5.7.18 Installation and Connection Tutorial

Starting from this article, a new series of artic...

Detailed explanation of mysql basic operation statement commands

1. Connect to MySQL Format: mysql -h host address...

Summary of four ways to introduce CSS (sharing)

1. Inline reference: used directly on the label, ...

SQL Get stored procedure return data process analysis

This article mainly introduces the analysis of th...

Detailed explanation of HTML basic tags and structures

1. HTML Overview 1.HTML: Hypertext Markup Languag...

Implementing Markdown rendering in Vue single-page application

When rendering Markdown before, I used the previe...

How much data can be stored in a MySQL table?

Programmers must deal with MySQL a lot, and it ca...

Example code for implementing 3D Rubik's Cube with CSS

Let's make a simple 3D Rubik's Cube today...

How to implement the builder pattern in Javascript

Overview The builder pattern is a relatively simp...

TypeScript problem with iterating over object properties

Table of contents 1. Problem 2. Solution 1. Decla...