Error 404: Prob accessing /solr/update. Reason: Not Found

后端 未结 2 2005
暗喜
暗喜 2020-12-29 10:58

I\'ve followed the solr tutorial and renamed the default collection1 to core1, but when I\'m getting error 404 trying to import a XML to solr using the following command:

2条回答
  •  情话喂你
    2020-12-29 11:19

    I was working with SolrNet and I get the same error. What I did was:

    • Run Solr with products: $solr-5.5.0\bin>solr start -e techproducts
    • Change SolrNet Sample App
      • web.config SolrUrl from http://localhost:8983/solr to http://localhost:8983/solr/techproducts
      • Global.asax.cs comment out the call to the method AddInitialDocuments()
    • Run the SolrNet Sample App

提交回复
热议问题