如何給Mysql資料庫賦予遠端連線的許可權

2021-08-05 19:42:38 字數 568 閱讀 4561

進入自己伺服器的mysql資料庫

執行以下sql語句

grant all privileges on *.* to zhangsan@"%" identified by "lisi"; 

flush privileges;

執行上面兩句話。自動建立使用者zhangs,密碼lisi

格式:grant 許可權 on 資料庫名.表名 to 使用者@登入主機 identified by "使用者密碼";

@ 後面是訪問mysql的客戶端ip位址(或是 主機名) % 代表任意的客戶端,如果填寫 localhost 為本地訪問(那此使用者就不能遠端訪問該mysql資料庫了)。

或者執行

grant

allprivileges

on *.* to

'root'@'%' identified by

'root'

with

grant

option;

flush privileges;

flush privileges;

授權使用者root使用密碼root從任意主機連線到mysql伺服器

MYSQL資料庫如何賦予遠端某個IP訪問許可權

1.授權使用者root使用密碼jb51從任意主機連線到mysql伺服器 如下 grant all privileges on to root identified by jb51 with grant option flush privileges 2.授權使用者root使用密碼jb51從指定ip為...

如何定時備份遠端mysql資料庫

通常,站長們都沒有自己的伺服器,每天都要手動備份資料庫那也很麻煩。這裡推薦乙個方法,利用windows的計畫任務來實現。前提 本地機器上裝有mysql服務。假設本地機器上mysql服務目錄 d mysql 假設遠端資料庫名稱 testdb 假設遠端資料庫使用者名稱 test 假設遠端資料庫密碼 12...

MySQL資料庫新建使用者並賦予許可權

首先使用root許可權登入mysql,切換到mysql資料庫,create user test localhost indentified by 123456 grant all on 資料庫名.to test localhost flush privileges create user test ...