開啟mysql遠端連線

2021-08-14 04:43:24 字數 401 閱讀 8566

在mysql控制台執行

grant all privileges on . to 『root』@』%』 identified by 『mypassword』 with grant option;

在mysql控制台執行命令中的 『root』@』%』 可以這樣理解: root是使用者名稱,%是主機名或ip位址,這裡的%代表任意主機或ip位址,你也可替換成任意其它使用者名稱或指定唯一的ip位址;』mypassword』是給授權使用者指定的登入資料庫的密碼;另外需要說明一點的是我這裡的都是授權所有許可權,可以指定部分許可權,

引用塊內容

grant具體操作詳情見:

另一種在mysql資料庫連線工具中進行配置就行

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只允許本地登入,如果要開啟遠端連線,則需要修改 etc mysql my.conf檔案。找到bind address 127.0.0.1這一行 改為bind address 0.0.0.0即可 1 新建使用者遠端連線mysql資料庫 grant all on to admin ...