User Tools

Site Tools


mysql:privileges

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
mysql:privileges [2016/07/19 18:08] petermysql: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 "SELECT CONCAT('SHOW GRANTS FOR \'', user ,'\'@\'', host, '\';') FROM mysql.user" | mysql -Bs | sed 's/$/;/g'
 +</code>
  
  
Line 112: Line 118:
  
 <code mysql> <code mysql>
-REATE USER 'peter'@'localhost' IDENTIFIED BY 'mypass';+CREATE USER 'peter'@'localhost' IDENTIFIED BY 'mypass';
 GRANT ALL ON db1.* TO 'peter'@'localhost'; GRANT ALL ON db1.* TO 'peter'@'localhost';
 GRANT SELECT ON db2.invoice TO 'peter'@'localhost'; GRANT SELECT ON db2.invoice TO 'peter'@'localhost';
mysql/privileges.1468951693.txt.gz · Last modified: 2020/07/15 09:30 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki