設定MYSQL遠端連線

2022-09-15 14:48:26 字數 493 閱讀 9728

設定mysql資料庫遠端連線:

windows系統

1、 停止mysql的服務。

2、 進入命令視窗,然後進入mysql的安裝目錄,比如我的安裝目錄是c:\mysql,進入c:\mysql\bin

3、 進入mysql資料庫伺服器

c:\mysql\bin>mysql –u root –p hkgt123

4、 選中資料庫mysql :use mysql

5、 查詢mysql資料庫中的使用者:

select host,user,password from user;

6、 授權給root使用者可以從任何主機使用密碼為』hkgt123』登入mysql資料庫:

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

7、 提交:commit;

8、 重新整理許可權:flush privileges;

mysql遠端連線設定 MySQL遠端連線設定

這只是乙個簡單mysql設定。但很多圖簡單,卻忽略了安全性。所以對設定中的細節和含義需要弄到清清楚楚才行。這只是乙個簡單mysql設定。但很多圖簡單,卻忽略了安全性。所以對設定中的細節和含義需要弄到清清楚楚才行。mysql遠端連線的設定問題 下面是步驟 1 登陸本地的mysql server mys...

mysql 設定遠端連線

授權法 grant select,insert,update,delete,create,drop on tablename.to username localhost identified by password 注意 tablename 你自己資料庫的名字,username 連線庫使用者名稱,l...

mysql設定遠端連線

1,開啟mysql遠端連線 1,獲取root許可權 sudo i 2,cd到配置檔案所在路徑 cd etc mysql mysql.conf.d 3,vi mysqld.cnf bind address 127.0.0.1 瀏覽模式 a 插入模式 esc 瀏覽模式 shift 命令列模式 wq 儲存...