2

因此,当我在 Solr Admin 的 RawQueryParameter 中添加分片时,出现以下错误

**error":{
    "metadata":[
      "error-class","org.apache.solr.common.SolrException",
      "root-error-class","org.apache.solr.common.SolrException"],
      "msg":"HttpShardHandlerFactory shardsWhitelist not configured but required (in lieu of ZkController 
       and ClusterState) when using the 'shards' parameter. set -Dsolr.disable.shardsWhitelist=true to 
       disable shards whitelist checks",
    "code":403}}**

我想禁用它,但没有发现任何有用的东西请告诉我如何禁用它

我不想指定像

<str name="shardsWhitelist">${solr.shardsWhitelist:localhost:8080/solr/test,localhost:8080/solr/test2}</str>

只想禁用它

4

1 回答 1

2

您可以在启动 solr 时将其添加为参数,如下所示。

-Dsolr.disable.shardsWhitelist=true

另一种选择是您可以添加 solr.disable.shardsWhitelist=true文件solr.in.sh

在路径中找到"...\solr-VERSION\bin"

于 2021-05-20T04:33:07.423 回答