Created 08-29-2022 01:46 PM
hello cloudera community,
how can we find out which group is tied to a sentry role by command line?
Created 08-30-2022 03:41 PM
The opposite command doesn't exist, as far as I know. Querying the database is the only option that I'm aware.
Cheers,
André
Created 08-29-2022 04:04 PM
You can do the reverse with the command "SHOW ROLE GRANT GROUP group name;".
I don't think there's a command to do exactly what you need, but you can query the database directly:
select
r.ROLE_NAME,
g.GROUP_NAME
from
SENTRY_GROUP g
join SENTRY_ROLE_GROUP_MAP rg on rg.GROUP_ID = g.GROUP_ID
join SENTRY_ROLE r on r.ROLE_ID = rg.ROLE_ID
order by
r.ROLE_NAME,
g.GROUP_NAME
;
Cheers,
André
Created 08-30-2022 05:32 AM
hi @araujo
this command "SHOW ROLE GRANT GROUP group name" I know and already used, I thought there was a command that did the opposite.
well I will check in mysql then and soon return if it worked.
Created 08-30-2022 03:41 PM
The opposite command doesn't exist, as far as I know. Querying the database is the only option that I'm aware.
Cheers,
André