Mysql開啟遠端連線

2021-10-22 03:53:17 字數 662 閱讀 5609

use  mysql;

update user set host =

'%' where user =

'root'

;# root為使用者名稱

# 【必選步驟】

use mysql;

# 賦予任何主機訪問資料的許可權【三選一】

grant all privileges on *.* to 'root'@'%'with grant option;

# root為使用者名稱

# 想myuser使用mypassword從任何主機連線到mysql伺服器【三選一】

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

# 想允許使用者myuser從ip為192.168.1.6的主機連線到mysql伺服器,並使用mypassword作為密碼【三選一】

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

# 使修改生效【必選】

flush privileges;

mysql開啟遠端 mysql 開啟遠端連線

1045,access denied for user root 192.168.100.1 using password yes 開啟資料庫遠端連線即可 1 先在本機使用root使用者登入mysql,然後進行授權。mysql grant all privileges on to root iden...

開啟mysql遠端連線

首先新增使用者 當然也可是使用root使用者 格式 grant 許可權 on 資料庫名.表名 使用者 登入主機 identified by 使用者密碼 grant select,update,insert,delete on to zhxia identified by 123456 或者所有許可權...

開啟mysql遠端連線

在mysql控制台執行 grant all privileges on to root identified by mypassword with grant option 在mysql控制台執行命令中的 root 可以這樣理解 root是使用者名稱,是主機名或ip位址,這裡的 代表任意主機或ip位...