SolrUI身份验证

e0uiprwp  于 2021-05-27  发布在  Hadoop
关注(0)|答案(1)|浏览(488)

我正在一个kerberized hdp集群上工作,其中有3个节点的infra solr示例。当我尝试连接到solr ui时,出现以下错误:

Kerberos Authentication

    Your browser did not provide the required information to authenticate using Kerberos. Please check that your computer has a valid ticket for communicating with Solr, and that your browser is properly configured to provide that ticket when required. For more information, consult Solr's Kerberos documentation .
    The response from the server was:

    HTTP 401 Authentication required
    WWW-Authenticate: Negotiate

在示例服务器中,我可以很容易地使用一个票据 curl 到solr url。我尝试了cloudera文档中提到的浏览器配置(针对mozilla),但它不起作用。
有人知道或知道如何解决这个问题吗?提前谢谢

a0zr77ik

a0zr77ik1#

我确实解决了这个问题,事实上我需要在高级拓扑knox(在ambari ui中)中添加以下行:

<service> <role>SOLR</role> 
                     <url>http://<hostname1>:8886/solr/</url>
                     <url>http://<hostname2>:8886/solr/</url>
                     <url>http://<hostname3>:8886/solr/</url>
     </service>

然后我在中添加了solr服务: gateway.dispatch.whitelist.services 在高级网关站点中

相关问题