我是靠谱客的博主 还单身狗,最近开发中收集的这篇文章主要介绍MySQL权限篇之ALL与SUPER,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

ALL权限,顾名思义就是所有权限,这个权限很大,并且with grant option。

这里说错了,其实ALL权限也不with grant option。任何权限都不包括grant option。

而SUPER权限,我个人理解就是ALL权限并且without grant option。不知道是否是这样?!

SUPER权限和all还是有很大区别,比如SHUTDOWN的权限super就没有,而all就有。

mysql> show grants for 'ut01'@'%';
+----------------------------------+
| Grants for ut01@%                |
+----------------------------------+
| GRANT USAGE ON *.* TO 'ut01'@'%' |
+----------------------------------+
1 row in set (0.00 sec)


mysql> grant all on *.* to 'ut01'@'%';
Query OK, 0 rows affected (0.05 sec)


mysql> show grants for 'ut01'@'%';
+-------------------------------------------+
| Grants for ut01@%                         |
+-------------------------------------------+
| GRANT ALL PRIVILEGES ON *.* TO 'ut01'@'%' |
+-------------------------------------------+
1 row in set (0.00 sec)


mysql> revoke all on *.* from 'ut01'@'%';
Query OK, 0 rows affected (0.05 sec)


mysql> show grants for 'ut01'@'%';
+----------------------------------+
| Grants for ut01@%                |
+----------------------------------+
| GRANT USAGE ON *.* TO 'ut01'@'%' |
+----------------------------------+
1 row in set (0.00 sec)


mysql> grant super on *.* to 'ut01'@'%';
Query OK, 0 rows affected (0.05 sec)


mysql> show grants for 'ut01'@'%';
+----------------------------------+
| Grants for ut01@%                |
+----------------------------------+
| GRANT SUPER ON *.* TO 'ut01'@'%' |
+----------------------------------+
1 row in set (0.00 sec)


mysql> revoke super on *.* from 'ut01'@'%';
Query OK, 0 rows affected (0.05 sec)


mysql> show grants for 'ut01'@'%';
+----------------------------------+
| Grants for ut01@%                |
+----------------------------------+
| GRANT USAGE ON *.* TO 'ut01'@'%' |
+----------------------------------+
1 row in set (0.00 sec)


mysql>

一般地,all和super这两个权限要注意保护。不能随便授予。

最后

以上就是还单身狗为你收集整理的MySQL权限篇之ALL与SUPER的全部内容,希望文章能够帮你解决MySQL权限篇之ALL与SUPER所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(61)

评论列表共有 0 条评论

立即
投稿
返回
顶部