實現MySQL遠端連線

2022-03-12 08:39:57 字數 613 閱讀 2565

1、直接修改mysql資料庫的user表記錄

1mysql 

-u root 

-p password;

2use

mysql;

3update

user

sethost =』

%』 where

user

=』root』; 

將host欄位的值改為%就表示在任何客戶端機器上能以root使用者登入到mysql伺服器,建議在開發時設為%,有時想用本地ip登入,那麼可以將以上的host值改為自己的ip即可。

2. 使用grant 命令 授權

格式:grant 許可權 on 資料庫名.表名 to 使用者@登入主機 identified by "使用者密碼";

1grant

select

,update

,insert

,deleteon*

.*toroot

@192

.168.1.12

identified 

by"root";

如果將'192.168.1.12' 更改成'%', 表示任何客戶端機器。

mysql連線實現 MySql實現遠端連線

1 進入mysql,建立乙個新使用者root,密碼為root 格式 grant 許可權 on 資料庫名.表名 to 使用者 登入主機 identified by 使用者密碼 grant select,update,insert,delete on to root 192.168.1.12 ident...

mysql實現遠端連線

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

mysql實現遠端連線

grant all privileges on to root identified by youpassword with grant option flush privileges mysql預設情況下,只允許localhost連線,如果需要外部ip連線到mysql,需要向mysql資料庫裡的 ...