Repository: hadoop Updated Branches: refs/heads/trunk 480c8db40 -> 746189ad8
HADOOP-14229. hadoop.security.auth_to_local example is incorrect in the documentation. Contributed by Andras Bokor. Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/746189ad Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/746189ad Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/746189ad Branch: refs/heads/trunk Commit: 746189ad8cdf90ab35baec9364b2e02956a1e70c Parents: 480c8db Author: Ravi Prakash <[email protected]> Authored: Fri Jul 28 11:43:36 2017 -0700 Committer: Ravi Prakash <[email protected]> Committed: Fri Jul 28 11:43:36 2017 -0700 ---------------------------------------------------------------------- .../hadoop-common/src/site/markdown/SecureMode.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/746189ad/hadoop-common-project/hadoop-common/src/site/markdown/SecureMode.md ---------------------------------------------------------------------- diff --git a/hadoop-common-project/hadoop-common/src/site/markdown/SecureMode.md b/hadoop-common-project/hadoop-common/src/site/markdown/SecureMode.md index e1aad5a..5a62c4f 100644 --- a/hadoop-common-project/hadoop-common/src/site/markdown/SecureMode.md +++ b/hadoop-common-project/hadoop-common/src/site/markdown/SecureMode.md @@ -142,12 +142,9 @@ In a typical cluster HDFS and YARN services will be launched as the system `hdfs <property> <name>hadoop.security.auth_to_local</name> <value> - RULE:[2:$1@$0](nn/.*@.*REALM.TLD)s/.*/hdfs/ - RULE:[2:$1@$0](jn/.*@.*REALM.TLD)s/.*/hdfs/ - RULE:[2:$1@$0](dn/.*@.*REALM.TLD)s/.*/hdfs/ - RULE:[2:$1@$0](nm/.*@.*REALM.TLD)s/.*/yarn/ - RULE:[2:$1@$0](rm/.*@.*REALM.TLD)s/.*/yarn/ - RULE:[2:$1@$0](jhs/.*@.*REALM.TLD)s/.*/mapred/ + RULE:[2:$1/$2@$0]([ndj]n/.*@REALM.TLD)s/.*/hdfs/ + RULE:[2:$1/$2@$0]([rn]m/.*@REALM.TLD)s/.*/yarn/ + RULE:[2:$1/$2@$0](jhs/.*@REALM.TLD)s/.*/mapred/ DEFAULT </value> </property> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
