mysql 允許mysql支援遠端訪問

2021-09-20 15:08:43 字數 635 閱讀 2784

方法

一、本地登入mysql,更改 「mysql」 資料庫裡的 「user」 表裡的 「host」 項,將」localhost」改為」%」

例如:

mysql -u root -proot

mysql>use mysql;

mysql>update user set host =

'%'where user =

'root';

mysql>

select host, user from user;

mysql>flush privileges;

方法

二、直接授權(推薦)

例如:

從任何主機上使用root使用者,密碼:yourpassword(你的root密碼)連線到mysql伺服器:

mysql -u root -proot 

mysql>grant all privileges on*.

*to'root'@'%' identified by

'yourpassword'

with grant option;

操作完後切記執行以下命令重新整理許可權

flush privileges;

ubuntu12 04 配置mysql允許遠端訪問

首先,修改 etc mysql目錄下面的my.cnf檔案,把其中的bind address設定為你的ip,假設為192.168.0.240 bash bind address 192.168.0.240 bash 我的mysql 版本如下 bash mysql ver 14.14 distrib 5...

mysql 允許遠端登陸 mysql 允許遠端登陸

參考 1.以root賬戶登入 2.grant all privileges on discuz.to ted 10.110.1.100 identified by 123456 all privileges 表示賦予所有的許可權給指定使用者,這裡也可以替換為賦予某一具體的許可權,例如 select,...

Linux安裝Mysql與Mysql的遠端訪問配置

一 檢視系統中是否已經自帶mysql資料庫 rpm qa grep mysql 這個命令就會檢視該作業系統上是否已經安裝了mysql資料庫 二 對已有資料庫進行解除安裝 rpm e mysql 普通刪除模式 rpm e nodeps mysql 強力刪除模式,如果使用上面命令刪除時,提示有依賴的其它...