How do I show user permission just at database level? First step is to know where such information is stored, followed by how to retrieve the information.
Access MySQL login as admin OR root.
mysql.user and mysql.db Tables
Have a look at the following tables, as they contain the relevant informationmysql> describe * from mysql.user;
mysql> describe * from mysql.db;
Listing users
Let's say, you want to see which user to host have accessmysql> select user, host from mysql.user;
+------------+-------------+
| user | host |
+------------+-------------+
| oc_admin | % |
| auditor | 10.1.20.204 |
| auditor | 10.1.20.244 |
| root | 10.1.20.44 |
| tbox | localhost |
| mysql.sys | localhost |
| oc_admin | localhost |
| pentaho | localhost |
| root | localhost |
+------------+-------------+
| user | host |
+------------+-------------+
| oc_admin | % |
| auditor | 10.1.20.204 |
| auditor | 10.1.20.244 |
| root | 10.1.20.44 |
| tbox | localhost |
| mysql.sys | localhost |
| oc_admin | localhost |
| pentaho | localhost |
| root | localhost |
+------------+-------------+
List grants for users
mysql> show grants;
+---------------------------------------------------------------------+
| Grants for root@localhost |
+---------------------------------------------------------------------+
| GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION |
| GRANT PROXY ON ''@'' TO 'root'@'localhost' WITH GRANT OPTION |
+---------------------------------------------------------------------+
| Grants for root@localhost |
+---------------------------------------------------------------------+
| GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION |
| GRANT PROXY ON ''@'' TO 'root'@'localhost' WITH GRANT OPTION |
+---------------------------------------------------------------------+
List User Access to Databases, Tables and Columns
mysql> SELECT Host, Db, User from mysql.dbThere are separate tables for each database, table or column specific access. Go thru and see what you need in the following tables.
mysql> SELECT Host, Db, User from mysql.db
mysql> SELECT * FROM mysql.db;
mysql> SELECT * FROM mysql.tables_priv;
mysql> SELECT * FROM mysql.columns_priv;
No comments:
Post a Comment