Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 solr 4教程示例中显示我可以从 start.jar 启动 solr。
java -Djetty.port=7574 -DzkHost=localhost:9983 -jar start.jar
我想从 war 文件中的 tomcat 启动它(我已经配置了 initctl 守护程序,所以它会更容易和更稳定),因此我必须在配置文件 solr.xml 或 solrconfig.xml 的某处指定这些云参数。我怎样才能做到这一点?
您必须在 [yourtomcatdir]/solr/solr.xml 中执行此操作 - 在顶级节点 (solr) 的此文件中,您可以有一个 zkHost 属性,您可以在其中列出以逗号分隔的 zookeeper 实例 (host:port) 以进行连接用于获取核心配置。