mysql 遠端連線許可權

2022-07-30 04:30:28 字數 961 閱讀 1957

遠端連線mysql提示host is not allowed to connect to this mysql server

2023年05月05日 17:51:03

如果你想連線你的mysql的時候發生這個錯誤:

error 1130: host '192.168.1.3' is not allowed to connect to this mysql server

1。 改表法。可能是你的帳號不允許從遠端登陸,只能在localhost。這個時候只要在localhost的那台電腦,登入mysql後,更改 "mysql" 資料庫裡的 "user" 表裡的 "host" 項,從"localhost"改稱"%"

mysql -u root -pvmwaremysql>use mysql;

mysql>update user set host = '%' where user = 'root';

mysql>select host, user from user;

2. 授權法。例如,你想myuser使用mypassword從任何主機連線到mysql伺服器的話。

grant all privileges on *.* to 'myuser'@'%' identified by 'mypassword' with grant option;

如果你想允許使用者myuser從ip為192.168.1.3的主機連線到mysql伺服器,並使用mypassword作為密碼

grant all privileges on *.* to 'root'@'192.168.1.3' identified by 'mypassword' with grant option;

grant all privileges on *.* to 'root'@'192.168.1.3' identified by '1235' with grant option;

mysql>flush privileges;  這句一定要加上!!!

MYSQL遠端連線無許可權

一,連線遠端伺服器出現host is not allowed to connect to this mysql server 出現問題原因本地無許可權 解決方法有兩個 1.修改許可權。2.修改mysql的user表 1.修改許可權方法 登陸遠端資料庫伺服器執行命令 grant all privile...

Mysql 設定遠端連線許可權

1 登陸資料庫 mysql uroot pmysql 2 選擇mysql資料庫 use mysql 3 檢視mysql資料庫中的user表中的host值 可以進行訪問的ip select host from user where user root 4 以設定萬用字元 的內容增加ip update ...

mysql連線遠端主機許可權問題

錯誤 是1130,error 1130 host x.x.x.x is not allowed to connect to this mysql server 猜想是無法給遠端連線的使用者許可權問題。結果這樣子操作mysql庫,即可解決。在伺服器登入mysql後,更改 mysql 資料庫裡的 use...