mysql資料庫允許被遠端連線訪問

2021-06-22 19:19:46 字數 1318 閱讀 5119

第一:更改 mysql 資料庫 user 表 host 項localhost改稱'%' 

或者新加條記錄host 項要訪問ip址並授權重啟mysql服務 

第二:系統防火牆新增例外埠:3306並允許例外 

error 1130: host '192.168.1.3' is not allowed to connect to this mysql server 

解決: 

1改表能帳號允許遠端登陸能localhost候要localhost臺電腦登入mysql更改 "mysql" 資料庫 "user" 表 "host" 項"localhost"改稱"%" 

1.mysql -u root -pvmware

mysql>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; 

想允許使用者myuserip192.168.1.3主機連線mysql伺服器並使用mypassword作密碼 

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

3.window自帶防火牆例外新增3306埠 

操作命令總結:

進入cmd 

mysql -u root -p 

mysql>use mysql; 

mysql>select 'host' from user where user='root'; 

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

mysql>flush privileges; 

mysql>select 'host'   from user where user='root'; 

第句許可權使用者root登入 

第二句:選擇mysql庫 

第三句:檢視mysql庫user表host值(即進行連線訪問主機/ip名稱) 

第四句:修改host值(萬用字元%內容增加主機/ip址)直接增加ip址 

第六句:再重新檢視user表修改 

重起mysql服務即完(有時不重啟也可)

mysql資料庫允許遠端連線

ysql為了安全性,在預設情況下使用者只允許在本地登入,可是在有此情況下,還是需要使用使用者進行遠端連線,因此為了使其可以遠端需要進行如下操作 cpp view plain copy cd c program files mysql mysql server 5.7 bin plain view p...

允許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...