Solr多核安装错误

时间:2016-07-12 08:33:36

标签: tomcat solr centos tomcat6

我的客户有使用solr搜索的网站,我不是专家。他现在需要更换服务器。以前的服务器有两个solr核心(即:core0和core1)。我安装了tomcat6然后添加了solr。我将先前服务器的solr目录添加到新服务器,以便快速设置所有模式和设置。但是当我尝试访问solr admin时,我收到此错误:

SolrCore Initialization Failures
core0: org.apache.solr.common.SolrException:org.apache.solr.common.SolrException: severeErrors
core1: org.apache.solr.common.SolrException:org.apache.solr.common.SolrException: severeErrors
Please check your logs for more information


There are no SolrCores running. 
Using the Solr Admin UI currently requires at least one SolrCore.

这是我的solr.xml文件:

<solr persistent="true">
  <cores adminPath="/admin/cores" host="${host:}" hostPort="${jetty.port:8080}" hostContext="${hostContext:solr}" defaultCoreName="core0">
    <core name="core0" instanceDir="core0" />
    <core name="core1" instanceDir="core1" />
    <shardHandlerFactory name="shardHandlerFactory" class="HttpShardHandlerFactory">
      <str name="urlScheme">${urlScheme:}</str>
    </shardHandlerFactory>
  </cores>
</solr>

可能是什么问题?请帮忙

0 个答案:

没有答案