本文介绍了HTTP错误:Solr路径中缺少404核心名称的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是Solr的新手,在我尝试将exampledocs索引到ubuntu 8.10中后,按照链接,出现此错误:

I am new to Solr, after installing it in ubuntu 8.10, when I was trying exampledocs to index , as per this link, I got this error:

这是在码头.

为了解决这个问题,我该怎么办?

What shall I do, in order to solve this?

推荐答案

我遇到了相同的错误:

就我而言,我已经忘记了,因此在WEB-INF/web.xml文件中设置solr/home

In my case I've forgotten so set the solr/home value in the WEB-INF/web.xml file

<env-entry>
   <env-entry-name>solr/home</env-entry-name>
   <env-entry-value>/put/your/solr/home/here</env-entry-value>
   <env-entry-type>java.lang.String</env-entry-type>
</env-entry>

添加以上代码并重新启动服务器后,错误消失了.

After I've added the above code and restarted the server, the error was gone.

这篇关于HTTP错误:Solr路径中缺少404核心名称的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-31 06:59