mysql出現錯誤碼1130的解決方法:先登入mysql;然後找到mysql資料庫裡的 “user” 表裡的 “host” 選項;最後從“localhost”改為“%”即可。
mysql出現錯誤碼1130的解決方法:
錯誤描述:
錯誤碼:1130
Host ***.***.***.*** 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’;
現在就可以連接了!
2、 授權法:
例如,你想root使用root從任何主機連接到mysql伺服器的話。
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION;
如果你想要允許使用者root從ip為192.168.1.3的主機連接到mysql伺服器,並使用root作為密碼
GRANT ALL PRIVILEGES ON *.* TO 'root'@'192.168.1.3' IDENTIFIED BY 'root' WITH GRANT OPTION;
相關免費學習推薦:mysql影片教學
以上是mysql出現錯誤碼1130怎麼辦的詳細內容。更多資訊請關注PHP中文網其他相關文章!