本文通過兩種方法給大家介紹mysql資料庫遠端訪問許可權的開啟方法,非常不錯,實用性非常高,感興趣的朋友一起看看吧
問題1:mysql資料庫遠端訪問許可權如何開啟?
問題2:mysql host 'eduglobalpc' is not allowed to connect to this mariadb server
下面這個方法都可以解決上面2個問題
mysql community edition(gpl)
community (gpl) downloads »
或者使用
見圖:
在我們使用mysql資料庫時,有時我們的程式與資料庫不在同一機器上,這時我們需要遠端訪問資料庫。預設狀態下,mysql的使用者沒有遠端訪問的許可權。
下面介紹兩種方法,解決這一問題。
1、改表法
可能是你的帳號不允許從遠端登陸,只能在localhost。這個時候只要在localhost的那台電腦,登入mysql後,更改 "mysql" 資料庫裡的 "user" 表裡的 "host" 項,從"localhost"改稱"%"
? 1
2
3
4
mysql -u root -p
mysql>use mysql;
mysql>
update
user
set
host =
'%'
where
user
=
'root'
;
mysql>
select
host,
user
from
user
;
2、授權法
在安裝mysql的機器上執行:
1、d:\mysql\bin\>mysql -h localhost -u root
//這樣應該可以進入mysql伺服器
2、mysql>grant all privileges on *.* to 'root'@'%'with grant option
//賦予任何主機訪問資料的許可權
例如,你想myuser使用mypassword從任何主機連線到mysql伺服器的話。
? 1
2
grant
all
privileges
on
*.*
to
'myuser'
@
'%'
identified
by
'mypassword'
wi
th
grant
option
;
如果你想允許使用者myuser從ip為192.168.1.6的主機連線到mysql伺服器,並使用mypassword作為密碼
? 1
2
grant
all
privileges
on
*.*
to
'myuser'
@
'192.168.1.3'
identified
by
'mypassword'
with
grant
option
;
3、mysql>flush privileges
//修改生效
4、mysql>exit
退出mysql伺服器,這樣就可以在其它任何的主機上以root身份登入
MySQL資料庫設定遠端訪問許可權
1 設定使用者名為root,密碼為空,可訪問資料庫test grant all privileges on test.to root 2 設定使用者名為root,密碼為空,可訪問所有資料庫 grant all privileges on to root 3 設定指定使用者名為liuhui,密碼為空,...
開啟MySQL資料庫遠端訪問許可權
1 改表法 可能是你的帳號不允許從遠端登陸,只能在localhost。這個時候只要在localhost的那台電腦,登入mysql後,更改 mysql 資料庫裡的 user 表裡的 host 項,從 localhost 改稱 mysql u root p mysql use mysql mysql u...
資料庫 開啟MySQL資料庫遠端訪問的許可權
一 改表法 可能是你的帳號不允許從遠端登陸,只能在localhost。這個時候只要在localhost的那台電腦,登入mysql後,更改 mysql 資料庫裡的 user 表裡的 host 項,從 localhost 改稱 mysql u root p mysql use mysql mysql u...