使用MySQL-Front連接mysql的時候發生的這個錯誤
ERROR 1130: Host 10.5.9.168 is not allowed to connect to this MySQL server
1。 改表法。可能是你的帳號不允許從遠程登陸,只能在localhost。這個時候只要在localhost的那台電腦,登入mysql後,更改 “mysql” 數據庫裡的 “user” 表裡的 “host” 項,從”localhost”改稱”%”
mysql -u root -p
mysql> use mysql;
mysql> update user set host = '% ' where user = 'root ';
mysql> flush privileges;
mysql> select 'host ', 'user ' from user where user= 'root ';
現在就可以連接了!
本文出自 “胖子的學習筆記” 博客