遠程連接mysql提示被拒解決方法

使用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 ';
現在就可以連接瞭!
本文出自 “胖子的學習筆記” 博客

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *