路径中缺少核心名称
我正在按照指定的 在 eclipse 和 tomcat 上设置 solr在这里。我在 debian 上使用 solr 3.5.0 和 eclipse Indigo。当我通过 eclipse 运行 solr 时,我能够访问主页。但管理控制台无法工作并抛出一个 404 页面,指出“路径中缺少核心名称”。
我缺少什么?任何帮助将不胜感激!
I am setting up solr on eclipse and tomcat as specified here. I am using solr 3.5.0 and eclipse Indigo on a debian. When I run solr through eclipse, I am able to reach the home page. But the admin console won't work and throws a 404 page stating "Missing core name in path".
What am I missing? Any help would be greatly appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来您正在使用多核配置,因此您的管理页面网址不仅仅是:
http://localhost:8080/solr/admin
,但它必须包含像这样的核心名称http://localhost:8080/solr/${core}/admin
。请将${core}
替换为您的核心名称。否则,您可以访问 URL
http://localhost:8080/solr
,您应该会看到可用核心的列表,您可以在其中单击特定核心并直接进入其管理页面。Looks like you're working with a multicore configuration, thus your admin page url is not just:
http://localhost:8080/solr/admin
but it has to contain the core name like thishttp://localhost:8080/solr/${core}/admin
. Please replace${core}
with your core name.Otherwise you can go to the url
http://localhost:8080/solr
and you should see a list of the available cores, where you can click on a specific core and go directly to its admin page.