MySql授予使用者指定資料庫許可權

2022-03-20 06:09:41 字數 503 閱讀 9116

/*授予使用者通過外網ip對於該資料庫的全部許可權*/

grant all privileges on `test`.* to 'test'@'%' ;

/*授予使用者在本地伺服器對該資料庫的全部許可權*/

grant all privileges on `test`.* to 'test'@'localhost';

grant select on test.* to 'user1'@'localhost'; /*給予查詢許可權*/

grant insert on test.* to 'user1'@'localhost'; /*新增插入許可權*/

grant delete on test.* to 'user1'@'localhost'; /*新增刪除許可權*/

grant update on test.* to 'user1'@'localhost'; /*新增許可權*/

flush privileges; /*重新整理許可權*/

mysql限制使用者只能訪問指定資料庫

create user username host identified by password host為localhost時,表示可本地登入 使用萬用字元 時,表示可以從任意遠端主機登陸。grant select,insert,update,references,delete,create,dr...

mongod 對指定資料庫建立使用者

1 先在admin庫中建立管理員使用者與密碼 root mbasic mongo mongodb shell version 3.2.6 connecting to test use admin 切換到admin資料庫 switched to db admin db.createuser 建立使用者...

授權MySQL賬戶訪問指定資料庫

需求 1 在mysql中建立資料庫mydata 2 新建mysql賬戶admin密碼123456 3 賦予賬戶admin對資料庫mydata具有完全操作許可權 1 登入mysql資料庫 mysq uroot p 在終端命令列輸入 123456 輸入密碼 2 show databases 顯示資料庫列...