Find Mysql Grants

Categories: Documentation ยท Exported: 2026-04-18 00:47

F-20250328-1153
Category: #c-howto
Status: #s-done
Tags: #t-kb
Links: [[MySQL]]

Process

Find all the grants:

SELECT User, Host, Grant_priv FROM mysql.user;

A particular grant:

SHOW GRANTS for 'inthubadmin'@'10.162.14.%';

References