mysql 常用的命令之用户篇
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 常用的命令之用户篇相关的知识,希望对你有一定的参考价值。
新建用户:
create user 用户名; --建立一个空密码用户.
create user 用户名 IDENTIFIED BY ‘密码‘; --新建用户时创建密码.
grant select[,insert...] on mysql.user to 用户名 identified by ‘密码‘; --新建用户的同时,授予用户select mysql数据库user表的权限.
更新密码:
1. set password=password(‘密码‘); --修改当前用户密码.
2. set password for 用户名=password(‘密码‘); --修改指定用户密码.
3. update mysql.user set password=password(‘密码‘) where user=‘用户名‘ --用update直接修改
flush privilegs; --更新内存使之生效
查看用户权限:
use mysql
select * from user where User=‘test‘\G; --格式化查看test用户的权限.
删除用户:
delete from user where user=‘‘; --删除user表中,用户名为空的列,必加from。防止任务用户都可以随便登录
flush privileges; --刷新内存使修改生效
给用户授权:
grant all on mysql.user to [email protected]‘%‘; --赋予所有名为test的用户mysql数据库user表的所有权限.
grant all on stu.* to [email protected]‘%‘; --赋予所有test2用户对stu数据库的权限
查询用户权限:
select * from mysql.user where user=‘随便一个用户名‘; --查询用户在数据库级的权限
show grants; --查询当前用户权限
show grants for 用户名; --查询指定用户的权限
回改权限:
revoke all privileges on mysql.user from test; --回收test用户对mysql.user数据表的所有权限.
revoke select on mysql.user from test2; --回收test2对mysql.user数据表的select权限.
以上是关于mysql 常用的命令之用户篇的主要内容,如果未能解决你的问题,请参考以下文章
mysql分析之profile详解(过去用法,但常用),一篇博客帮你理解 profile 的用法