mysql:export_users_with_grants
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
mysql:export_users_with_grants [2016/07/04 00:10] – created peter | mysql:export_users_with_grants [2020/07/15 09:30] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== MySQL - Export users with grants ====== | ====== MySQL - Export users with grants ====== | ||
- | Run this query: | + | Make it easy to have all the queries needed to determine the grants for every user. |
+ | |||
+ | <code mysql> | ||
+ | mysql> SELECT DISTINCT CONCAT(' | ||
+ | |||
+ | +-------------------------------------------------+ | ||
+ | | query | | ||
+ | +-------------------------------------------------+ | ||
+ | | SHOW GRANTS FOR ' | ||
+ | | SHOW GRANTS FOR ' | ||
+ | | SHOW GRANTS FOR ' | ||
+ | | SHOW GRANTS FOR ' | ||
+ | | SHOW GRANTS FOR ' | ||
+ | | SHOW GRANTS FOR ' | ||
+ | | SHOW GRANTS FOR ' | ||
+ | | SHOW GRANTS FOR ' | ||
+ | | SHOW GRANTS FOR ' | ||
+ | | SHOW GRANTS FOR ' | ||
+ | | SHOW GRANTS FOR ' | ||
+ | | SHOW GRANTS FOR ' | ||
+ | | SHOW GRANTS FOR ' | ||
+ | +-------------------------------------------------+ | ||
+ | 13 rows in set (0.00 sec) | ||
+ | </ | ||
+ | |||
+ | Then get the actual grants for that user. | ||
+ | |||
+ | <code mysql> | ||
+ | mysql> SHOW GRANTS FOR ' | ||
+ | |||
+ | +-------------------------------------------------------------------+ | ||
+ | | Grants for email@localhost | ||
+ | +-------------------------------------------------------------------+ | ||
+ | | GRANT USAGE ON *.* TO ' | ||
+ | | GRANT ALL PRIVILEGES ON `email_accounts`.* TO ' | ||
+ | +-------------------------------------------------------------------+ | ||
+ | 2 rows in set (0.00 sec) | ||
+ | </ | ||
+ | |||
+ | |||
+ | |||
+ | To combine all the above, run this query: | ||
<code mysql> | <code mysql> | ||
### mysql -uroot -p{PASS} -B -N -e " | ### mysql -uroot -p{PASS} -B -N -e " | ||
</ | </ | ||
+ | |||
+ |
mysql/export_users_with_grants.1467591008.txt.gz · Last modified: 2020/07/15 09:30 (external edit)