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

2022-07-21 15:24:22 字數 548 閱讀 5817

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

**如下:

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

flush privileges;

2.授權使用者root使用密碼jb51從指定ip為218.12.50.60的主機連線到mysql伺服器:

**如下:

grant all privileges on *.* to 'root'@'218.12.50.60' identified by 'jb51' with grant option;

flush privileges;

mysql8.0

建立使用者

create user 'anycloud'@'192.168.50.85' identified by 'anycloud';

新增許可權

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

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

進入自己伺服器的mysql資料庫 執行以下sql語句 grant all privileges on to zhangsan identified by lisi flush privileges 執行上面兩句話。自動建立使用者zhangs,密碼lisi 格式 grant 許可權 on 資料庫名.表...

如何定時備份遠端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 ...