在 tomcat 上部署 Apache Solr 5.2.1

Deploy Apache Solr 5.2.1 on tomcat

刚刚从 here. According to this and this post 下载了最新的 solr-5.2.1.tgz 版本,它应该包含 /dist 子目录中的 warfile。

但我在发行版中找不到 warfile。这个版本 5.x 有变化吗?我在哪里可以获得 solr-5.x 的预构建 warfile 以在 tomcat 上部署?

由于 tomcat 支持似乎被禁用,因为 5.x 我不得不更深入地挖掘,最后我很容易找到文档 how to start solr,即使它不在 [=23] =].

您只需解压 solr-5.2.1.tgz 文件,然后转到 /solr-5.2.1 并执行

$ bin/solr start

这将在默认端口 8983 上永久启动 solr 服务器。

我实际上考虑过在 tomcat 上部署 warfile 是最简单的方法,但它伴随着您必须处理的各种日志记录错误。因此,所描述的方法适合我。