因此,当我在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>
我只想禁用它
1条答案
按热度按时间fivyi3re1#
您可以在启动solr时将其添加为参数,如下所示。
另一个选择是,您可以将
solr.disable.shardsWhitelist=true
添加到solr.in.sh
文件中,其在路径
"...\solr-VERSION\bin"
处找到