mysql 允許遠端連線

2022-06-08 05:42:10 字數 440 閱讀 1465

1、修改資料表

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

mysql> use mysql

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

2、授權許可權

允許任何主機使用「myuser」賬號和「mypwd」密碼連線到 mysql 伺服器。

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

即可生效。

mysql> flush privileges;

允許mysql遠端連線

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

mysql允許遠端連線

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

允許MySQL遠端連線

1.修改mysql配置檔案 etc mysql my.cnf 注釋以下行 bind address 127.0.0.1 2.重啟mysql資料庫,對於ubuntu系統,執行如下命令 sudo etc init.d mysql restart 3.以root使用者登入mysql後,執行如下命令 gra...