您好,登錄后才能下訂單哦!
SQLyog連接mysql 錯誤號碼1129:
mysql error 1129: Host 'bio.chip.org' is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts'。
解決方法:
cmd命令行:
mysqladmin flush-host -h 127.0.0.1 -u root -p123456
解決。
擴展學(xué)習(xí)
錯誤:Host is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts'
原因:
同一個ip在短時間內(nèi)產(chǎn)生太多(超過mysql數(shù)據(jù)庫max_connection_errors的最大值)中斷的數(shù)據(jù)庫連接而導(dǎo)致的阻塞;
解決方法:
1、提高允許的max_connection_errors數(shù)量(治標(biāo)不治本):
① 進入Mysql數(shù)據(jù)庫查看max_connection_errors: show variables like '%max_connection_errors%';
② 修改max_connection_errors的數(shù)量為1000: set global max_connect_errors = 1000;
③ 查看是否修改成功:show variables like '%max_connection_errors%';
2、使用mysqladmin flush-hosts 命令清理一下hosts文件(不知道m(xù)ysqladmin在哪個目錄下可以使用命令查找:whereis mysqladmin);
① 在查找到的目錄下使用命令修改:/usr/bin/mysqladmin flush-hosts -h292.168.1.1 -P3308 -uroot -prootpwd;
備注:
其中端口號,用戶名,密碼都可以根據(jù)需要來添加和修改;
配置有master/slave主從數(shù)據(jù)庫的要把主庫和從庫都修改一遍的(我就吃了這個虧明明很容易的幾條命令結(jié)果折騰了大半天);
第二步也可以在數(shù)據(jù)庫中進行,命令如下:flush hosts;
大多數(shù)的百度結(jié)果都是這樣,但是對于我的數(shù)據(jù)庫連接還是不行,經(jīng)多次驗證,發(fā)現(xiàn)需要加上主機地址,即執(zhí)行:mysqladmin flush-hosts -h 127.0.0.1 -uroot -p命令
以上就是本次解決的詳細方法和步驟,感謝大家對億速云的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。