当前位置:   article > 正文

Hadoop Web UI控制台添加验证_yarn web ui 加认证

yarn web ui 加认证

       默认情况下,Hadoop HTTP Web控制台(ResourceManager,NameNode,NodeManagers和DataNodes)允许访问而无需任何形式的身份验证。

      官网连接:https://hadoop.apache.org/docs/stable/hadoop-project-dist/hadoop-common/HttpAuthentication.html

1、配置core-site.xml

  1. <configuration>
  2. <!-- Authentication for Hadoop HTTP web-consoles -->
  3. <property>
  4. <name>hadoop.http.filter.initializers</name>
  5. <value>org.apache.hadoop.security.AuthenticationFilterInitializer</value>
  6. </property>
  7. <property>
  8. <name>hadoop.http.authentication.type</name>
  9. <value>simple</value>
  10. </property>
  11. <property>
  12. <name>hadoop.http.authentication.token.validity</name>
  13. <value>3600</value>
  14. </property>
  15. <property>
  16. <name>hadoop.http.authentication.signature.secret.file</name>
  17. <value>/opt/apache/hadoop/secret/hadoop-http-auth-signature-secret</value>
  18. </property>
  19. <property>
  20. <name>hadoop.http.authentication.cookie.domain</name>
  21. <value></value>
  22. </property>
  23. <property>
  24. <name>hadoop.http.authentication.simple.anonymous.allowed</name>
  25. <value>false</value>
  26. </property>
  27. </configuration>

2、创建密钥文件

mkdir -p /opt/apache/hadoop/secret/

cd /opt/apache/hadoop/secret/

echo \"hadoop\" > hadoop-http-auth-signature-secret

3、同步core-site.xml、hadoop-http-auth-signature-secret到集群其他节点

4、重启ResourceManager,NameNode,NodeManagers和DataNodes

5、访问例子

http://ip:50070  出现错误

http://ip:50070?user.name=hadoop    访问正确

6、注意事项

(1)http://ip:50070?user.name=hadoop  访问正确后,再次访问可以不用密码或者密码不正确;如http://ip:50070或者http://ip:50070?user.name=xxx 都可以访问

(2)修改密码时,即echo \"xxx\" > hadoop-http-auth-signature-secret ;修改的密码要和之前的密码相差太,不然会出现修改完密码重启NameNode这些进程,不能正常访问,即使密码正确

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/599017
推荐阅读
相关标签
  

闽ICP备14008679号