HDFS-9415. Document dfs.cluster.administrators and dfs.permissions.superusergroup. (Contributed by Xiaobing Zhou)
This commit is contained in:
parent
f2eea3a1b4
commit
3266709b5d
|
@ -876,6 +876,9 @@ Release 2.8.0 - UNRELEASED
|
||||||
|
|
||||||
HDFS-9630. DistCp minor refactoring and clean up. (Kai Zheng via zhz)
|
HDFS-9630. DistCp minor refactoring and clean up. (Kai Zheng via zhz)
|
||||||
|
|
||||||
|
HDFS-9415. Document dfs.cluster.administrators and
|
||||||
|
dfs.permissions.superusergroup. (Xiaobing Zhou via Arpit Agarwal)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
HDFS-8026. Trace FSOutputSummer#writeChecksumChunks rather than
|
HDFS-8026. Trace FSOutputSummer#writeChecksumChunks rather than
|
||||||
|
|
|
@ -414,17 +414,24 @@
|
||||||
<property>
|
<property>
|
||||||
<name>dfs.permissions.superusergroup</name>
|
<name>dfs.permissions.superusergroup</name>
|
||||||
<value>supergroup</value>
|
<value>supergroup</value>
|
||||||
<description>The name of the group of super-users.</description>
|
<description>The name of the group of super-users.
|
||||||
|
The value should be a single group name.
|
||||||
|
</description>
|
||||||
</property>
|
</property>
|
||||||
<!--
|
|
||||||
<property>
|
<property>
|
||||||
<name>dfs.cluster.administrators</name>
|
<name>dfs.cluster.administrators</name>
|
||||||
<value>ACL for the admins</value>
|
<value></value>
|
||||||
<description>This configuration is used to control who can access the
|
<description>ACL for the admins, this configuration is used to control
|
||||||
default servlets in the namenode, etc.
|
who can access the default servlets in the namenode, etc. The value
|
||||||
|
should be a comma separated list of users and groups. The user list
|
||||||
|
comes first and is separated by a space followed by the group list,
|
||||||
|
e.g. "user1,user2 group1,group2". Both users and groups are optional,
|
||||||
|
so "user1", " group1", "", "user1 group1", "user1,user2 group1,group2"
|
||||||
|
are all valid (note the leading space in " group1"). '*' grants access
|
||||||
|
to all users and groups, e.g. '*', '* ' and ' *' are all valid.
|
||||||
</description>
|
</description>
|
||||||
</property>
|
</property>
|
||||||
-->
|
|
||||||
|
|
||||||
<property>
|
<property>
|
||||||
<name>dfs.namenode.acls.enabled</name>
|
<name>dfs.namenode.acls.enabled</name>
|
||||||
|
|
Loading…
Reference in New Issue