無法給遠端連線的使用者許可權問題。
在本機登入mysql後,更改 「mysql」 資料庫裡的 「user」 表裡的 「host」 項,從」localhost」改稱』%』。。
第一句是以許可權使用者root登入
mysql -u root -p
第二句:選擇mysql庫
mysql>use mysql;
第三句:檢視mysql庫中的user表的host值(即可進行連線訪問的主機/ip名稱)
mysql>select 『host』 from user where user=『root』;
第四句:修改host值(以萬用字元%的內容增加主機/ip位址),當然也可以直接增加ip位址
mysql>update user set host = 『%』 where user =『root』;
第六句:再重新檢視user表時,有修改。。
mysql>select 『host』 from user where user=『root』;
連線MySQL出現1130錯誤
在使用pycharm連線資料庫時,出現了1130的錯誤,經過查詢應該是無法給遠端連線的使用者許可權問題,只需要按照以下步驟即可解決 在本機登入mysql後,更改 mysql 資料庫裡的 user 表裡的 host 項,從 localhost 改稱 即可 mysql u root pmysql use...
遠端連線MYSQL提示1130錯誤
如果你想連線你的mysql的時候發生這個錯誤 error 1130 host 192.168.1.3 is not allowed to connect to this mysql server 1。改表法。可能是你的帳號不允許從遠端登陸,只能在localhost。這個時候只要在localhost的...
解決遠端連線mysql錯誤1130
mysql 遠端連線mysql伺服器的資料庫,錯誤 是1130,error 1130 host is not allowed to connect to this mysql server 猜想是無法給遠端連線的使用者許可權問題。這樣子操作mysql庫,即可解決。在本機登入mysql後,更改 mys...