CDH 禁用Kerberos配置详解

CDH 禁用Kerberos

  • hue配置:
    Kerberos Ticket Renewer Process Health Test:false
  • Zookeeper配置:
    enableSecurity (Enable Kerberos Authentication):false
    zoo.cfg配置:skipACL: yes
  • HDFS配置:
    hadoop.security.authentication:Simple
    hadoop.security.authorization:false
    dfs.datanode.address:1004 (for Kerberos) 改为 50010 (default)
    dfs.datanode.http.address:1006 (for Kerberos) 改为 50075 (default)
    dfs.datanode.data.dir.perm:700 改为 755
  • HBase配置:
    hbase.security.authentication:Simple
    hbase.security.authorization:false
    hbase.thrift.security.qop:none
  • Kafka配置:
    kerberos.auth.enable:false
  • SOLR配置:
    solr Secure Authentication :Simple

版权声明:本博客为记录本人自学感悟,转载需注明出处!
https://me.csdn.net/qq_39657909

你可能感兴趣的:(CDH)