如果你想連接你的mysql的時候發生這個錯誤:
ERROR 1130: Host '172.21.200.35' is not allowed to connect to this MySQL server
解決方法:
1、改表法。可能是你的帳號不允許從遠程登陸,只能在localhost。這個時候只要在localhost的那台電腦,登入 mysql後,更改 “mysql” 數據庫裡的 “user” 表裡的 “host” 項,從”localhost”改稱”%”
mysql -u root -p jjj
mysql>use mysql;
mysql>update user set host = '%' where user = 'root';
mysql>select host, user from user;
2、授權法。例如,你想root使用jjj從任何主機連接到mysql服務器的話。
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'jjj' WITH GRANT OPTION;
如果你想允許用戶root從ip為172.21.200.35的主機連接到mysql服務器,並使用jjj作為密碼
GRANT ALL PRIVILEGES ON *.* TO 'root'@'172.21.200.35' IDENTIFIED BY 'jjj' WITH GRANT OPTION;