我已将 solr-4.5.0 配置为与 tomcat7 和 zookeeper 3.3.5 一起使用(来自 debian 包)根据许多教程,我创建了以下Catalina/localhost/solr.xml
文件
<Context allowlinking="true" crosscontext="true" debug="1" docBase="/var/lib/tomcat7/webapps/solr.war" priviledged="true">
<Environment name="solr/home" override="true" type="java.lang.String" value="/opt/solr/webapps/solr1" />
</Context>
我已经在 2 台机器上配置了 solr 以在云中工作(使用 zookeeper 来保持配置)。在两台机器上,启动tomcat7时,我看到以下错误catalina.out
:
11693 [localhost-startStop-1] INFO org.apache.solr.core.SolrResourceLoader – No /solr/home in JNDI
....
12529 [coreLoadExecutor-3-thread-1] ERROR org.apache.solr.core.CoreContainer – Failed to load file /var/lib/tomcat7/solr/collection1/solrconfig.xml
12532 [coreLoadExecutor-3-thread-1] ERROR org.apache.solr.core.CoreContainer – Unable to create core: collection1
org.apache.solr.common.SolrException: Could not load config file /var/lib/tomcat7/solr/collection1/solrconfig.xml
有趣的是,在该文件的开头,我看到:
64 [localhost-startStop-1] INFO org.apache.solr.core.SolrResourceLoader – Using JNDI solr.home: /opt/solr/webapps/solr1
71 [localhost-startStop-1] INFO org.apache.solr.core.SolrResourceLoader – new SolrResourceLoader for directory: '/opt/solr/webapps/solr1/'
当然我想在 JNDI 中配置 solr/home,而不是在 solr.war 中。知道可能出了什么问题吗?
PS:这个问题不是这样的问题的重复: How to set solr/home in linux OS? 这: 在Tomcat中部署战争 不同之处在于我正在定义solr / home,但它似乎不起作用。