Created 10-19-2017 08:35 AM
I need to check the permission of a user.
Actually the only way i found is : user_permission 'table_name'.
using this CLI i should execute it for each table...
is there another way to get all the user permissions in all tables?
Thanks
Helmi
Created 10-19-2017 08:51 AM
Try running the below command in shell to get permissions for a user for all the tables
echo "user_permission '.*'" | hbase shell -n | grep {username}
user_permission '.*' gives permissions for all users for all tables
Thanks,
Aditya
Created 10-19-2017 08:51 AM
Try running the below command in shell to get permissions for a user for all the tables
echo "user_permission '.*'" | hbase shell -n | grep {username}
user_permission '.*' gives permissions for all users for all tables
Thanks,
Aditya
Created 10-19-2017 08:56 AM
Yes ii works !
Thank you @Aditya Sirna 🙂