查看用户权限
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