報錯以下:mysql
ERROR 1129 (HY000): Host '10.0.14.251' is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts'sql
根據提示mysqladmin flush-hosts,看來要刷新一下網絡鏈接數據庫
執行
bash
flush hosts;
發現沒報錯了,開心,嘿嘿。網絡
根據提示中的many connection errors,再查看mysql配置max_connect_errorside
show global variables like 'max_connect_errors';
保險起見,把這個配置調大spa
set global max_connect_errors=1024;
若是須要永久生效,記得去修改mysql配置文件。ip
-------------it
最後再回來更新一下,百度了緣由,以下:io
同一個ip在短期內產生太多(超過mysql數據庫max_connect_errors的最大值)中斷的數據庫鏈接而致使的阻塞!