红联Linux门户
Linux帮助

MySQL修改用户权限

发布时间:2015-10-28 15:49:42来源:linux网站作者:XGiton

查看用户权限

show grants for user@host;


比如查看root@localhost的权限:

show grants for root@localhost;


赋予用户权限

赋予用户对db数据库进行select操作权限:

grant select on db.* to user@host;


同时赋予用户多个权限:

grant select,update,insert,delete on db.* to user@host;


回收用户权限

revoke select on db.* from user@host;


Linux系统下设置用户权限:http://www.linuxdiyf.com/linux/2589.html

全面解析Linux特殊用户权限的分配:http://www.linuxdiyf.com/linux/312.html

ubuntu15.04 mysql字符集修改:http://www.linuxdiyf.com/linux/15226.html

Linux下查看MySQL的安装路径:http://www.linuxdiyf.com/linux/14760.html

ubuntu15.04手动安装MySQL5.6.27数据库:http://www.linuxdiyf.com/linux/14699.html