~~ Licensed under the Apache License, Version 2.0 (the "License"); ~~ you may not use this file except in compliance with the License. ~~ You may obtain a copy of the License at ~~ ~~ http://www.apache.org/licenses/LICENSE-2.0 ~~ ~~ Unless required by applicable law or agreed to in writing, software ~~ distributed under the License is distributed on an "AS IS" BASIS, ~~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~~ See the License for the specific language governing permissions and ~~ limitations under the License. See accompanying LICENSE file. --- Authentication for Hadoop HTTP web-consoles --- --- ${maven.build.timestamp} Authentication for Hadoop HTTP web-consoles %{toc|section=1|fromDepth=0} * Introduction This document describes how to configure Hadoop HTTP web-consoles to require user authentication. By default Hadoop HTTP web-consoles (JobTracker, NameNode, TaskTrackers and DataNodes) allow access without any form of authentication. Similarly to Hadoop RPC, Hadoop HTTP web-consoles can be configured to require Kerberos authentication using HTTP SPNEGO protocol (supported by browsers like Firefox and Internet Explorer). In addition, Hadoop HTTP web-consoles support the equivalent of Hadoop's Pseudo/Simple authentication. If this option is enabled, user must specify their user name in the first browser interaction using the user.name query string parameter. For example: <<>>. If a custom authentication mechanism is required for the HTTP web-consoles, it is possible to implement a plugin to support the alternate authentication mechanism (refer to Hadoop hadoop-auth for details on writing an <<>>). The next section describes how to configure Hadoop HTTP web-consoles to require user authentication. * Configuration The following properties should be in the <<>> of all the nodes in the cluster. <<>>: add to this property the <<>> initializer class. <<>>: Defines authentication used for the HTTP web-consoles. The supported values are: <<>> | <<>> | <<<#AUTHENTICATION_HANDLER_CLASSNAME#>>>. The dfeault value is <<>>. <<>>: Indicates how long (in seconds) an authentication token is valid before it has to be renewed. The default value is <<<36000>>>. <<>>: The signature secret file for signing the authentication tokens. The same secret should be used for all nodes in the cluster, JobTracker, NameNode, DataNode and TastTracker. The default value is <<<${user.home}/hadoop-http-auth-signature-secret>>>. IMPORTANT: This file should be readable only by the Unix user running the daemons. <<>>: The domain to use for the HTTP cookie that stores the authentication token. In order to authentiation to work correctly across all nodes in the cluster the domain must be correctly set. There is no default value, the HTTP cookie will not have a domain working only with the hostname issuing the HTTP cookie. IMPORTANT: when using IP addresses, browsers ignore cookies with domain settings. For this setting to work properly all nodes in the cluster must be configured to generate URLs with <<>> names on it. <<>>: Indicates if anonymous requests are allowed when using 'simple' authentication. The default value is <<>> <<>>: Indicates the Kerberos principal to be used for HTTP endpoint when using 'kerberos' authentication. The principal short name must be <<>> per Kerberos HTTP SPNEGO specification. The default value is <<>>, where <<<_HOST>>> -if present- is replaced with bind address of the HTTP server. <<>>: Location of the keytab file with the credentials for the Kerberos principal used for the HTTP endpoint. The default value is <<<${user.home}/hadoop.keytab>>>.i