无法找到或加载主类org.apache.solr.util.SolrCLI

时间:2017-03-28 02:35:20

标签: solr

在尝试在Windows x64计算机上设置SOLR时,我一直收到错误 “无法找到或加载主类org.apache.solr.util.SolrCLI”

1 个答案:

答案 0 :(得分:3)

解决问题的方法非常简单。 1)启动solr。请注意,您必须使用solr.cmd而不仅仅是solr

*bin/solr.cmd start*

2)然后创建集合:

*bin/solr.cmd create -c gettingstarted -p 8983*

3)然后使用post工具将文件/ s添加到索引中。您可以通过两种方式执行post命令

一)java -Dc=gettingstarted -jar post.jar *.json

b)bin/post -c gettingstarted example/exampledocs/books.json

现在,您可以导航到新创建的集合“gettingstarted”并查询您的图书。

`http://localhost:8983/solr/#/gettingstarted/query

希望这能节省一些人的时间。