User Tools

Site Tools


mysql:export_users_with_grants

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
mysql:export_users_with_grants [2016/07/04 00:10] – created petermysql: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('SHOW GRANTS FOR \'', user, '\'@\'', host, '\';') AS query FROM mysql.user; 
 + 
 ++-------------------------------------------------+ 
 +| query                                           | 
 ++-------------------------------------------------+ 
 +| SHOW GRANTS FOR 'root'@'127.0.0.1';             | 
 +| SHOW GRANTS FOR 'root'@'::1';                   | 
 +| SHOW GRANTS FOR 'debian-sys-maint'@'localhost';
 +| SHOW GRANTS FOR 'email'@'localhost';            | 
 +| SHOW GRANTS FOR 'greylist'@'localhost';         | 
 +| SHOW GRANTS FOR 'mysql.sys'@'localhost';        | 
 +| SHOW GRANTS FOR 'root'@'localhost';             | 
 +| SHOW GRANTS FOR 'roundcube'@'localhost';        | 
 +| SHOW GRANTS FOR 'roundcubeuser'@'localhost';    | 
 +| SHOW GRANTS FOR 'snort'@'localhost';            | 
 +| SHOW GRANTS FOR 'spamassassin'@'localhost';     | 
 +| SHOW GRANTS FOR 'wiki'@'localhost';             | 
 +| SHOW GRANTS FOR 'wiki'@'localhost.localdomain';
 ++-------------------------------------------------+ 
 +13 rows in set (0.00 sec) 
 +</code> 
 + 
 +Then get the actual grants for that user. 
 + 
 +<code mysql> 
 +mysql> SHOW GRANTS FOR 'email'@'localhost';  
 + 
 ++-------------------------------------------------------------------+ 
 +| Grants for email@localhost                                        | 
 ++-------------------------------------------------------------------+ 
 +| GRANT USAGE ON *.* TO 'email'@'localhost'                         | 
 +| GRANT ALL PRIVILEGES ON `email_accounts`.* TO 'email'@'localhost'
 ++-------------------------------------------------------------------+ 
 +2 rows in set (0.00 sec) 
 +</code> 
 + 
 + 
 + 
 +To combine all the above, run this query:
  
 <code mysql> <code mysql>
 ### mysql -uroot -p{PASS} -B -N -e "SELECT DISTINCT CONCAT('SHOW GRANTS FOR \'', user, '\'@\'', host, '\';') AS query FROM mysql.user" | mysql -uroot -p{PASS} | sed 's/\(GRANT .\)/\1;/;s/^\(Grants for .\)/## \1 ##/;/##/{x;p;x;}' ### mysql -uroot -p{PASS} -B -N -e "SELECT DISTINCT CONCAT('SHOW GRANTS FOR \'', user, '\'@\'', host, '\';') AS query FROM mysql.user" | mysql -uroot -p{PASS} | sed 's/\(GRANT .\)/\1;/;s/^\(Grants for .\)/## \1 ##/;/##/{x;p;x;}'
 </code> </code>
 +
 +
mysql/export_users_with_grants.1467591008.txt.gz · Last modified: 2020/07/15 09:30 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki