MySQL 是一種流行的關系型數據庫管理系統。在使用 MySQL 進行開發時,有時可能會遇到輸錯密碼后 IP 地址被限制的情況。
# 密碼輸錯五次,導致 IP 被禁止訪問 ERROR 1045 (28000): Access denied for user 'user'@'localhost' (using password: YES) ERROR 1045 (28000): Access denied for user 'user'@'192.168.1.100' (using password: YES) ERROR 1045 (28000): Access denied for user 'user'@'192.168.1.100' (using password: YES) ERROR 1045 (28000): Access denied for user 'user'@'192.168.1.100' (using password: YES) ERROR 1045 (28000): Access denied for user 'user'@'192.168.1.100' (using password: YES) ERROR 1129 (HY000): Host '192.168.1.100' is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts' # 通過 mysqladmin flush-hosts 命令解除 IP 地址限制 mysqladmin -uroot -p flush-hosts
如果您的 IP 地址被限制,請嘗試使用正確的用戶名和密碼登錄 MySQL。如果您嘗試多次登錄失敗,可能會導致您的 IP 地址被限制。此時,您可以使用 mysqladmin flush-hosts 命令解除 IP 地址限制。