博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HBase shell权限管理
阅读量:6415 次
发布时间:2019-06-23

本文共 3268 字,大约阅读时间需要 10 分钟。

概述

在 hbase 中,为了增强数据的安全性,可以通过其权限管理功能进行权限约束。

权限控制类型

  • Read (R):读取数据权限
  • Write (W):写数据权限
  • Execute (X):执行协处理器的权限
  • Create (C):创建/删除表等操作
  • Admin (A):管理员权限

注意:以上权限均是有作用域的,具体的作用域粒度控制如下。

权限控制粒度

  • Superuser:超级管理员用户!!!拥有所有的权限! 可以通过在 hbase-site.xml 中配置 hbase.superuser 的值来添加超级账号(一般情况下保留默认的hbase即可)。
  • Global:拥有所有 table 的 admin 权限。
  • Namespace :控制命名空间级别相关权限。
  • Table:控制 table 级别相关权限。
  • ColumnFamily:控制 ColumnFamily 级别相关权限。
  • Cell:控制 Cell 级别相关权限。

注意:以上权限均是有作用实体的,具体的作用实体分类如下。

权限控制实体

  • User:对某用户授权
  • Group:对某用户组授权

权限控制

在 hbase 中,可以通过 hbase shell command 来实现权限的控制,主要涉及三部分:

  • grant:为 user / group 赋权
  • revoke:移除 user / group 的权限
  • user_permission:查看 user / group 的权限

grant / 赋权

grant 的使用方法参考:

Grant users specific rights.Syntax : grant 
,
[, <@namespace> [,
[,
]]]permissions is either zero or more letters from the set "RWXCA".READ('R'), WRITE('W'), EXEC('X'), CREATE('C'), ADMIN('A')Note: Groups and users are granted access in the same way, but groups are prefixed with an '@' character. In the same way, tables and namespaces are specified, but namespaces are prefixed with an '@' character.For example: hbase> grant 'bobsmith', 'RWXCA' // 为用户赋权 hbase> grant '@admins', 'RWXCA' // 为用户组赋权 hbase> grant 'bobsmith', 'RWXCA', '@ns1' hbase> grant 'bobsmith', 'RW', 't1', 'f1', 'col1' hbase> grant 'bobsmith', 'RW', 'ns1:t1', 'f1', 'col1' // 粒度可以控制到 ColumnFamily 和 Cell 级别复制代码
[,

revoke / 移除权限

revoke 的使用方法参考:

Revoke a user's access rights.Syntax : revoke 
[, <@namespace> [,
[,
]]]]Note: Groups and users access are revoked in the same way, but groups are prefixed with an '@' character. In the same way, tables and namespaces are specified, but namespaces are prefixed with an '@' character.For example: hbase> revoke 'bobsmith' // 移除用户权限 hbase> revoke '@admins' // 移除用户组权限 hbase> revoke 'bobsmith', '@ns1' hbase> revoke 'bobsmith', 't1', 'f1', 'col1' hbase> revoke 'bobsmith', 'ns1:t1', 'f1', 'col1'复制代码
[,

user_permission / 查看权限

Show all permissions for the particular user.Syntax : user_permission 
Note: A namespace must always precede with '@' character.For example: hbase> user_permission hbase> user_permission '@ns1' // 查看 namespace 权限 hbase> user_permission '@.*' // 查看所有 namespace 权限 hbase> user_permission '@^[a-c].*' hbase> user_permission 'table1' // 查看 table 权限 hbase> user_permission 'namespace1:table1' // 查看 table 权限 hbase> user_permission '.*' hbase> user_permission '^[A-C].*'复制代码

补充说明

为了使用 hbase 的权限管理功能,需要在 hbase-site.xml 文件中打开相应的安全认证功能。

hbase.security.authorization
true
hbase.coprocessor.master.classes
org.apache.hadoop.hbase.security.access.AccessController
hbase.coprocessor.region.classes
org.apache.hadoop.hbase.security.token.TokenProvider,org.apache.hadoop.hbase.security.access.AccessController
hbase.coprocessor.regionserver.classes
org.apache.hadoop.hbase.security.access.AccessController,org.apache.hadoop.hbase.security.token.TokenProvider
复制代码

转载地址:http://pgcra.baihongyu.com/

你可能感兴趣的文章
极限编程和JUnit
查看>>
linux上部署ant
查看>>
arc073 F many moves(dp + 线段树)
查看>>
长理 校赛的 一个贪心题
查看>>
vuecli3初尝试(转载)
查看>>
学习笔记:索引碎片、计划缓存、统计信息
查看>>
TSQL技巧(一) -- 子查询(subquery)
查看>>
espcms简约版的表单,提示页,搜索列表页
查看>>
GDI
查看>>
设备拨打电话
查看>>
学习笔记-七burpsuite的使用
查看>>
dom解析xml
查看>>
【leetcode】900. RLE Iterator
查看>>
Google JavaScript Style Guide
查看>>
ethtool
查看>>
POJ 1273 Drainage Ditches
查看>>
阻塞和非阻塞,同步和异步
查看>>
LINUX基础内容
查看>>
阿花宝宝 Java基础笔记 之 引用类型作为参数
查看>>
Echarts dataZoom缩放功能参数详解:
查看>>