##常见mysql常用命令,授权和撤销操作,赶紧收藏
–记得点赞关注哟,谢谢啦–
一.用户授权命令:
grant 权限 to 数据库名.数据库表 to 用户
权限:insert 增,delete 删, select 查, update 改, create 创建, drop 删除…
例:grant select on user to xhk
表示将user数据库的查询权限授给xhk用户
用户后面可以加 @‘ip地址’ identified by ‘密码’
例如:grant all on *.* to xhk@'127.0.0.1' identify by '123456'
表示将所有数据库的所有权限授权给xhk用户,允许xhk用户在127.0.0.1这个IP进行远程登陆,并设置用户的密码为123456
刷新权限:flush privileges
//授权完之后要刷新权限才可以生效
二.授权限一般分为另种情况下:一种是普通用户,另一种是数据库开发人员、运维人员
普通用户一般就是增删查改:
grant select on test.* to xhk@'%'
//表示将test数据库下所有表的查询权限授给xhK用户
grant insert on test.user to xhk@'%'
//表示将test数据库下的user表的查询权限授给xhK用户
grant update on test.* to xhk@'%';
grant delete on test.* to xhk@'%' ;
数据库开发人员创建表、索引、视图、存储过程、函数等权限:
grant create on test.* to xhk@'192.168.0.%';
grant alter on test.* to xhk@'192.168.0.%';
grant drop on test.* to xhk@'192.168.0.%';
//192.168.0.%表示允许远程连接的 IP 地址,如果想不限制链接的 IP 则设置为“%”即可
三、grant 普通 DBA 管理某个 MySQL 数据库的权限
grant all privileges on testdb to dba@'localhost'
其中,关键字 “privileges” 可以省略。
四、grant 高级 DBA 管理 MySQL 中所有数据库的权限:
grant all on *.* to dba@'localhost'
五、MySQL grant 权限,分别可以作用在多个层次上
- grant 作用在整个 MySQL 服务器上:
grant select on *.* to dba@localhost; -- dba 可以查询 MySQL 中所有数据库中的表。
grant all on *.* to dba@localhost; -- dba 可以管理 MySQL 中的所有数据库
- grant 作用在单个数据库上:
grant select on testdb.* to dba@localhost; -- dba 可以查询 testdb 中的表。
- grant 作用在单个数据表上:
grant select, insert, update, delete on testdb.orders to dba@localhost;
这里在给一个用户授权多张表时,可以多次执行以上语句。例如:
grant select(user_id,username) on smp.users to mo_user@'%' identified by '123345';
grant select on smp.mo_sms to mo_user@'%' identified by '123345';
- grant 作用在表中的列上:
grant select(id, se, rank) on testdb.apache_log to dba@localhost;
- grant 作用在存储过程、函数上:
grant execute on procedure testdb.pr_add to 'dba'@'localhost' ;
grant execute on function testdb.fn_add to 'dba'@'localhost' ;
六、查看 MySQL 用户权限
查看当前用户(自己)权限:
show grants;
查看其他 MySQL 用户权限:
show grants for dba@localhost;
七、撤销已经赋予给 MySQL 用户权限的权限。
revoke 跟 grant 的语法差不多,只需要把关键字 “to” 换成 “from” 即可:
grant all on *.* to dba@localhost;
revoke all on *.* from dba@localhost;
八、MySQL grant、revoke 用户权限注意事项
- grant, revoke 用户权限后,该用户只有重新连接 MySQL 数据库,权限才能生效。
- 如果想让授权的用户,也可以将这些权限 grant 给其他用户,需要选项 “grant option“
grant select on testdb.* to dba@localhost with grant option;
grant select on testdb.* to dba@localhost with grant option;
这个特性一般用不到。实际中,数据库权限最好由 DBA 来统一管理。