1. 程式人生 > >mysql用root賬戶建立使用者和賦予許可權

mysql用root賬戶建立使用者和賦予許可權

1.建立使用者

create user guest_test@localhost identified by "root";
-- 建立名為guest_test的使用者

2.賦予許可權

 
 
-- 給guest_test使用者賦予guest_test增刪改的許可權。第一個guest_test指資料庫,第二個指使用者名稱,hostname指指定ip
grant create,alter,drop on guest_test.* to [email protected]
-- 給guest_test使用者賦予guest_test庫中所有表的全部許可權
grant all privileges on *.* to
[email protected]


-- 給guest_test使用者賦予guest_test庫中所有表的查詢許可權
grant select on database.* to [email protected]

-- 給guest_test使用者賦予guest_test某個表的使用者許可權
grant select on guest_test.t1table to [email protected]


3.撤銷許可權

撤銷guest_test使用者guest_test庫所有表的增刪改查的許可權

revoke select,update,delete,insert on guest_test.* from 
[email protected]
;
flush privileges;

4.刪除使用者

drop user [email protected]