MySQL用户权限管理
grant 权限 on 数据库.* to 用户名@登录主机 identified by “密码”
如,增加一个用户user1密码为password1,让其可以在本机上登录, 并对所有数据库有查询、插入、修改、删除的权限。首先用以root用户连入mysql,然后键入以下命令:
grant select,insert,update,delete on . to user1@localhost Identified by “password1”;
如果希望该用户能够在任何机器上登陆mysql,则将localhost改为”%”。
如果你不想user1有密码,可以再打一个命令将密码去掉。
grant select,insert,update,delete on mydb.* to user1@localhost identified by “”;
在本地创建一个用户qinsy,并赋予所有数据库上的所有表的select和insert权限
grant select,insert on . to qinsy@localhost;
select * from user where user=’qinsy’\G
select * from db where user=’qinsy’;
将用户qinsy的权限改为只对test数据库上的所有表赋予select和insert权限
revoke select,insert on . from qinsy@127.0.0.1; grant select,insert on test.* to qinsy@localhost;
数据库系统管理 默认用户管理
默认有4个组合法用户存在:@localhost、@hostname、root@localhost、