solr 啟動報錯Cannot load analyzer: org.wltea.analyzer.lucene.IKAnalyzer


schema.xml 配置文件信息:
  

<field name="title" type="text_ik" indexed="true" stored="true" multiValued="true"/>
<field name="describe" type="text_ik" indexed="true" stored="true" />


<fieldType name="text_ik" class="solr.TextField"> <!--index add IKAnalyzer--> <analyzer type="index" isMaxWordLength="false" class="org.wltea.analyzer.lucene.IKAnalyzer"/> <!--search add IKAnalyzer--> <analyzer type="query" isMaxWordLength="true" class="org.wltea.analyzer.lucene.IKAnalyzer"/> </fieldType>

  

錯誤提示:

HTTP ERROR 500

Problem accessing /solr/. Reason:

    {msg=SolrCore 'collection1' is not available due to init failure: Could not load conf for core collection1: Plugin init failure for [schema.xml] fieldType "text_ik": Cannot load analyzer: org.wltea.analyzer.lucene.IKAnalyzer. Schema file is /home/hadoop/CDH5/solr-4.10.4/example/solr/collection1/conf/schema.xml,trace=org.apache.solr.common.SolrException: SolrCore 'collection1' is not available due to init failure: Could not load conf for core collection1: Plugin init failure for [schema.xml] fieldType "text_ik": Cannot load analyzer: org.wltea.analyzer.lucene.IKAnalyzer. Schema file is /home/hadoop/CDH5/solr-4.10.4/example/solr/collection1/conf/schema.xml
	at org.apache.solr.core.CoreContainer.getCore(CoreContainer.java:745)
	at org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:307)
	at org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:207)
	at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1419)
	at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:455)
	at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:137)
錯誤原因:
因為是用jeety啟動的, 在添加了IK的分詞定義后沒有把ik分詞jar包添加到 solr-4.10.4/example/solr-webapp/webapp/WEB-INF/lib 目錄下
解決辦法: 將IKjar 包添加到該目錄下即可(該目錄需要自己創建)


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM