在 Tomcat 中部署战争

发布于 2024-11-06 23:12:31 字数 428 浏览 0 评论 0原文

我想在Tomcat5.5中部署solr.war。 我已将 solr.war 文件复制到 webapps 中并将其解压缩。 运行 http://localhost:8080/solr/ 时,我面临以下异常。请建议我需要做什么。

无法启动 SOLR。检查 solr/home 属性 java.lang.RuntimeException: 找不到资源“solrconfig.xml” 在类路径或“solr/conf/”中, cwd=C:\Program Files\Apache 软件 基础\Tomcat 5.5\bin"

说要在类路径中包含 solrconfig.xml,但我没有找到任何 .classpath 文件。

I want to deploy solr.war in Tomcat5.5.
I have copied solr.war file in webapps and extract it.
while running http://localhost:8080/solr/ i am facing wid following exception. please suggest me what i need to do.

Could not start SOLR. Check solr/home
property java.lang.RuntimeException:
Can't find resource 'solrconfig.xml'
in classpath or 'solr/conf/',
cwd=C:\Program Files\Apache Software
Foundation\Tomcat 5.5\bin"

it is saying to include solrconfig.xml in classpath but i m not finding any .classpath file.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

何以畏孤独 2024-11-13 23:12:31

在 cofig/catalina/localhost 文件夹中创建文件 solr.xml 。 在以下路径 D:\project\Solr_Integration\solr 中手动添加此上下文

<Context docBase="D:\project\Solr_Integration\apache-tomcat-6.0.35\webapps\solr.war" debug="0" crossContext="true" >
    <Environment name="solr/home" type="java.lang.String" value="D:\project\Solr_Integration\solr" override="true" />
</Context>

副本文件 D:\project\Solr_Integration\apache-solr-4.0.0\example\solr

启动服务器。

Create a file solr.xml in cofig/catalina/localhost folder . Add this Context

<Context docBase="D:\project\Solr_Integration\apache-tomcat-6.0.35\webapps\solr.war" debug="0" crossContext="true" >
    <Environment name="solr/home" type="java.lang.String" value="D:\project\Solr_Integration\solr" override="true" />
</Context>

copy files manaully form here D:\project\Solr_Integration\apache-solr-4.0.0\example\solr in the following path D:\project\Solr_Integration\solr

Start the server .

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文