HBASE-9742 0.94 addition for simple user access
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1535448 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5102aec6c0
commit
1bb0a0e43e
|
@ -290,6 +290,23 @@
|
||||||
<value>org.apache.hadoop.hbase.security.access.AccessController</value>
|
<value>org.apache.hadoop.hbase.security.access.AccessController</value>
|
||||||
</property>
|
</property>
|
||||||
]]></programlisting>
|
]]></programlisting>
|
||||||
|
<para>
|
||||||
|
For 0.94, add the following to the <code>hbase-site.xml</code> file on every server machine in the cluster:
|
||||||
|
</para>
|
||||||
|
<programlisting><![CDATA[
|
||||||
|
<property>
|
||||||
|
<name>hbase.rpc.engine</name>
|
||||||
|
<value>org.apache.hadoop.hbase.ipc.SecureRpcEngine</value>
|
||||||
|
</property>
|
||||||
|
<property>
|
||||||
|
<name>hbase.coprocessor.master.classes</name>
|
||||||
|
<value>org.apache.hadoop.hbase.security.access.AccessController</value>
|
||||||
|
</property>
|
||||||
|
<property>
|
||||||
|
<name>hbase.coprocessor.region.classes</name>
|
||||||
|
<value>org.apache.hadoop.hbase.security.access.AccessController</value>
|
||||||
|
</property>
|
||||||
|
]]></programlisting>
|
||||||
<para>
|
<para>
|
||||||
A full shutdown and restart of HBase service is required when deploying
|
A full shutdown and restart of HBase service is required when deploying
|
||||||
these configuration changes.
|
these configuration changes.
|
||||||
|
@ -306,6 +323,15 @@
|
||||||
<value>simple</value>
|
<value>simple</value>
|
||||||
</property>
|
</property>
|
||||||
]]></programlisting>
|
]]></programlisting>
|
||||||
|
<para>
|
||||||
|
For 0.94, add the following to the <code>hbase-site.xml</code> file on every server machine in the cluster:
|
||||||
|
</para>
|
||||||
|
<programlisting><![CDATA[
|
||||||
|
<property>
|
||||||
|
<name>hbase.rpc.engine</name>
|
||||||
|
<value>org.apache.hadoop.hbase.ipc.SecureRpcEngine</value>
|
||||||
|
</property>
|
||||||
|
]]></programlisting>
|
||||||
<para>
|
<para>
|
||||||
Be advised that if the <code>hbase.security.authentication</code>
|
Be advised that if the <code>hbase.security.authentication</code>
|
||||||
in the client- and server-side site files do not match, the client will
|
in the client- and server-side site files do not match, the client will
|
||||||
|
|
Loading…
Reference in New Issue