mysql遠端連線授權

2021-09-08 22:16:34 字數 937 閱讀 7489

mysql:is not allowed to connect to this mysql server

如果你想連線你的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'@'10.10.40.54' identified by '123456' with grant option;

flush privileges;//使用者付完許可權後對資料進行重新整理時用!要不mysql資料庫識別不了

遠端使用者連線mysql授權

mysql 授權法 在安裝mysql的機器上執行 1 d mysql bin mysql h localhost u root 這樣應該可以進入mysql伺服器 2 mysql grant all privileges on to root with grant option 賦予任何主機訪問資料的...

遠端使用者連線mysql授權

在安裝mysql的機器上執行 1 mysql u myuser p xx 進入mysql伺服器 2 mysql grant all privileges on to root with grant option 賦予任何主機訪問資料的許可權 例如,你想myuser使用mypassword從任何主機連...

遠端連線mysql 授權方法詳解

今在伺服器上 有mysql 資料庫,遠端訪問,不想公布root賬戶,所以,建立了demo賬戶,允許demo賬戶在任何地方都能訪問mysql資料庫中shandong庫。方案一 在安裝mysql的機器上執行 1 建立user使用者 create user demo identified by 12345...