Hadoop1.2.1配置用户认证——simple类型

官方文档参考地址:Authentication for Hadoop HTTP web-consoles

1、配置core-site.xml文件,需要配置的内容如下

  <property>
    <name>hadoop.http.filter.initializers</name>
    <value>org.apache.hadoop.security.AuthenticationFilterInitializer</value>
  </property>
  <property>
    <name>hadoop.http.authentication.type</name>
    <value>simple</value>
  </property>
  <property>
    <name>hadoop.http.authentication.token.validity</name>
    <value>36000</value>
  </property>
  <property>
    <name>hadoop.http.authentication.signature.secret.file</name>
    <value>/home/wukong/hadoop-http-auth-signature-secret</value>
  </property>
  <property>
    <name>hadoop.http.authentication.cookie.domain</name>
    <value></value>
  </property>
  <property>
    <name>hadoop.http.authentication.simple.anonymous.allowed</name>
    <value>false</value>
  </property>

2、增加文件/home/wukong/hadoop-http-auth-signature-secret并编辑内容。里边写入你想要的英文用户名,比如在文件中写入:admin。

3、将core-site.xml和hadoop-http-auth-signature-secret文件复制到所有节点

4、启动hadoop即可。

访问http://192.168.1.11:50070/dfshealth.jsp,由于没有认证信息,所以会报401错误。Hadoop1.2.1配置用户认证——simple类型_第1张图片

访问http://192.168.1.11:50070/dfshealth.jsp?user.name=admin时,可以正常打开。

Hadoop1.2.1配置用户认证——simple类型_第2张图片



你可能感兴趣的:(授权,hadooop)