mysql:privileges
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
mysql:privileges [2016/07/19 17:01] – peter | mysql:privileges [2020/07/15 09:30] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 95: | Line 95: | ||
MySQL stores proxy privileges in the **mysql.proxies_priv** table. | MySQL stores proxy privileges in the **mysql.proxies_priv** table. | ||
+ | |||
+ | ===== Display all user's grants ===== | ||
+ | |||
+ | <code mysql> | ||
+ | mysql -Bse " | ||
+ | </ | ||
+ | |||
+ | |||
+ | ===== Possible permissions for a backup user ===== | ||
+ | |||
+ | <code mysql> | ||
+ | mysql> GRANT FILE, SELECT, SHOW VIEW, LOCK TABLES, RELOAD, REPLICATION CLIENT ON | ||
+ | *.* TO ' | ||
+ | Query OK, 0 rows affected (0.01 sec) | ||
+ | |||
+ | mysql> flush privileges; | ||
+ | Query OK, 0 rows affected (0.00 sec) | ||
+ | </ | ||
===== Other examples ===== | ===== Other examples ===== | ||
Line 100: | Line 118: | ||
<code mysql> | <code mysql> | ||
- | REATE USER ' | + | CREATE |
GRANT ALL ON db1.* TO ' | GRANT ALL ON db1.* TO ' | ||
GRANT SELECT ON db2.invoice TO ' | GRANT SELECT ON db2.invoice TO ' |
mysql/privileges.1468947708.txt.gz · Last modified: 2020/07/15 09:30 (external edit)