最新消息: 新版网站上线了!!!

solr7.7基于jetty成功搭建,以及新手常见文件解决Error CREATEing SolrCore 'new_core'和Can't find resource 'solrconfig.xml' in classpath

错误提示:

Error CREATEing SolrCore 'new_core': Unable to create core [new_core] Caused by: Can't find resource 'solrconfig.xml' in classpath or 'D:\solr-7.7.0\server\solr\new_core'

版本:solr7.7

环境:windows7+jdk1.8

一、下载部署完成之后,执行命令solr start成功启动solr

d:\solr-7.7.0\bin>solr start

二、浏览器查看是否能够访问

http://localhost:8983/solr/index.html

image.png

三、点击 Core Admin->然后又点击了Add Core此时错误出现了

错误内容:Error CREATEing SolrCore 'new_core': Unable to create core [new_core] Caused by: Can't find resource 'solrconfig.xml' in classpath or 'D:\solr-7.7.0\server\solr\new_core'

操作图片:

image.png

四、解决办法

1、不应该进行此操作:点击 Core Admin->然后又点击了Add Core,重点强调,不要点击Core Admin中的Add Core。因为按照这个界面操作之前,要进行solr配置,不配置操作会出错的,所以新手还是使用命名创建吧。

2、而是回到命令操作界面

创建new core为core1

命令:D:\solr-7.7.0\bin>solr start

image.png

创建成功发现:D:\solr-7.7.0\server\solr目录下多了core1目录

core1下面也自动生成了conf和data目录以及下面的文件

conf 是配置

data 数据位置

五、返回浏览器界面点击Core Admin可以看到创建结果

搭建成功,并成功创建了core

image.png




转载请注明:谷谷点程序 » solr7.7基于jetty成功搭建,以及新手常见文件解决Error CREATEing SolrCore 'new_core'和Can't find resource 'solrconfig.xml' in classpath