Find Mysql Grants

Categories: Documentation ยท Exported: 2026-06-22 09:28

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