一、错误信息
SolrCore Initialization Failures
org.apache.solr.common.SolrException:org.apache.solr.common.SolrException: Index locked for write for core paper
question: org.apache.solr.common.SolrException:org.apache.solr.common.SolrException: Error opening new searcher
SolrCore 'collection1' is not available due to init failure: Error opening n
二、解决方法
以上错误研究了很长时间,网上百度goole了很多解决方法,又是重启tomcat又是重新建立solr配置都无效,无意中用以下方法终于解决了。
1、首先,删除/data/index/write.lock文件,
2、然后,登录 Apache Tomcat 管理界面,点击进入Manager App ,在Applications列表中找到solr站点,点击Reload按钮
3、最后,刷新solr站点,发现问题解决了,难受。
不知道为什么这个solr怎么这么多问题,纠结了好久,全是这个collection1出的问题,如果有谁知道其中的原理,望告知。
三、附上Tomcat 管理界面用户配置方法
Apache Tomcat 管理界面用户配置方法:
编辑文件
/tomcat/conf/tomcat-users.xml
,在
tomcat-users
节点加入以下内容,username和password自己修改
<role rolename="admin-gui"/>
<role rolename="manager-gui"/>
<user username="admin" password="admin" roles="admin-gui,manager-gui"/>