開放mysql遠端連線

2021-08-03 06:55:44 字數 918 閱讀 4170

1。 改表法。

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

./mysql -u root -p****

mysql>use mysql;

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

mysql>select host, user from user;

flush rivileges

2. 授權法。

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

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

flush   privileges;

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

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

flush   privileges;

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

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

flush   privileges;

Mysql開放遠端連線

localhost 進入msyql安裝目錄的bin目錄下,執行mysql u root p root進入mysql操作介面 select host,user,password from mysql.user 看到host欄位的值為localhost 只允許本機登陸訪問 將host欄位的值改為 就表示...

Mysql 開放遠端連線 步驟

問題 如果在遠端連線報錯 1130 host is not allowed to connect to this mysql server,可能是你的帳號不允許從遠端登陸,只能在localhost。這個時候只要在localhost的那台電腦,登入mysql後,更改 mysql 資料庫裡的 user ...

開放mysql遠端連線 不使用localhost

報錯 1130 host is not allowed to connect to this mysql server 解決方法 1。改表法。可能是你的帳號不允許從遠端登陸,只能在localhost。這個時候只要在localhost的那台電腦,登入mysql後,更改 mysql 資料庫裡的 user...