MySQL中的使用者與授權

2022-03-13 15:40:46 字數 652 閱讀 9577

grant all on *.* to root@'192.168.20.49';

grant select on *.* to [email protected] ; -- dba 可以查詢 mysql

中所有資料庫中的表。

grant all on *.* to [email protected] ; -- dba 可以管理 mysql

中的所有資料庫

以上不行就下面, 記得flush重新整理一下

grant all privileges on *.* to 'aitang'@'192.168.100.142' identified by '123'with grant option;

flush privileges;

下面是我剛剛執行過的sql,

create user 'guo'@'172.168.10.229' identified by '123456';   //新增乙個使用者guo,並使得可以在 172.168.10.229的ip上進行登入,密碼為123456

grant all on *.* to guo@'172.168.10.229';            //賦予這個ip中的這個使用者全部資料庫的許可權

flush privileges;

MySQL使用者與授權

create user username root identified by password username 你將建立的使用者名稱 root 指定該使用者在哪個主機上可以登陸,如果是本地使用者可用localhost,如果想讓該使用者可以從任意遠端主機登陸,可以使用萬用字元 password 該...

MySQL新增使用者使用者與授權

mysql中新增使用者,新建資料庫,使用者授權,刪除使用者,修改密碼 注意每行後邊都跟個 表示乙個命令語句結束 1.新建使用者 登入mysql mysql u root p 密碼 建立使用者 mysql insert into mysql.user host,user,password values...

mysql 授權 mysql 使用者授權

mysql grant 許可權1,許可權2,許可權n on 資料庫名稱.表名稱 to 使用者名稱 使用者位址 identified by 連線口令 許可權1,許可權2,許可權n代表select,insert,update,delete,create,drop,index,alter,grant,re...