diff --git a/hadoop-common-project/hadoop-common/CHANGES.txt b/hadoop-common-project/hadoop-common/CHANGES.txt index 5ad5d4473a..f75986e4da 100644 --- a/hadoop-common-project/hadoop-common/CHANGES.txt +++ b/hadoop-common-project/hadoop-common/CHANGES.txt @@ -407,6 +407,8 @@ Trunk (Unreleased) HADOOP-11602. Fix toUpperCase/toLowerCase to use Locale.ENGLISH. (ozawa) + HADOOP-11625. Minor fixes to command manual & SLA doc (aw) + OPTIMIZATIONS HADOOP-7761. Improve the performance of raw comparisons. (todd) diff --git a/hadoop-common-project/hadoop-common/src/site/markdown/CommandsManual.md b/hadoop-common-project/hadoop-common/src/site/markdown/CommandsManual.md index 62235c5643..33986ae434 100644 --- a/hadoop-common-project/hadoop-common/src/site/markdown/CommandsManual.md +++ b/hadoop-common-project/hadoop-common/src/site/markdown/CommandsManual.md @@ -140,7 +140,7 @@ indicates that the current user's credentials file should be consulted through t When utilizing the credential command it will often be for provisioning a password or secret to a particular credential store provider. In order to explicitly indicate which provider store to use the `-provider` option should be used. Otherwise, given a path of multiple providers, the first non-transient provider will be used. This may or may not be the one that you intended. -Example: `-provider jceks://file/tmp/test.jceks` +Example: `hadoop credential list -provider jceks://file/tmp/test.jceks` ### `distch` @@ -178,12 +178,12 @@ Print the computed java.library.path. ### `kerbname` - Usage: <<>> +Usage: `hadoop kerbname principal` - Convert the named principal via the auth_to_local rules to the Hadoop - user name. +Convert the named principal via the auth_to_local rules to the Hadoop +user name. - Example: <<>> +Example: `hadoop kerbname user@EXAMPLE.COM` ### `key` @@ -212,7 +212,10 @@ Commands useful for administrators of a hadoop cluster. ### `daemonlog` -Usage: `hadoop daemonlog -getlevel ` Usage: `hadoop daemonlog -setlevel ` +Usage: + + hadoop daemonlog -getlevel + hadoop daemonlog -setlevel | COMMAND\_OPTION | Description | |:---- |:---- | diff --git a/hadoop-common-project/hadoop-common/src/site/markdown/ServiceLevelAuth.md b/hadoop-common-project/hadoop-common/src/site/markdown/ServiceLevelAuth.md index 8b4a10f905..ae41b479a1 100644 --- a/hadoop-common-project/hadoop-common/src/site/markdown/ServiceLevelAuth.md +++ b/hadoop-common-project/hadoop-common/src/site/markdown/ServiceLevelAuth.md @@ -90,7 +90,7 @@ If access control list is not defined for a service, the value of `security.serv * Blocked Access Control ListsIn some cases, it is required to specify blocked access control list for a service. This specifies the list of users and groups who are not authorized to access the service. The format of the blocked access control list is same as that of access control list. The blocked access control list can be specified via `$HADOOP_CONF_DIR/hadoop-policy.xml`. The property name is derived by suffixing with ".blocked". - Example: The property name of blocked access control list for `security.client.protocol.acl>> will be <<