solr 如何禁用shardsWhitelist,我得到以下错误

kxe2p93d  于 2022-11-05  发布在  Solr
关注(0)|答案(1)|浏览(218)

因此,当我在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>

我只想禁用它

fivyi3re

fivyi3re1#

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

-Dsolr.disable.shardsWhitelist=true

另一个选择是,您可以将solr.disable.shardsWhitelist=true添加到solr.in.sh文件中,
其在路径"...\solr-VERSION\bin"处找到

相关问题