搭建windows的solr6服務器(二)

首先搭建solr環境,如:solr6.0學習(一)環境搭建html

修改各類配置文件。java

一、修改solrhome下的solr.xml文件web

註解掉zookeeper搭建集羣配置,咱們後面會採用master-slave的形式。apache

至於zookeeper的形式能夠閱讀如下這篇文章【solrCloud集羣配置指導】:http://www.aboutyun.com/thread-9432-1-1.htmljson

[html] view plain copy 在CODE上查看代碼片派生到個人代碼片
  1. <!-- 結合zookeeper配置solrColound start -->  
  2.   <!-- 採用master-slave的方式  
  3.   <solrcloud>  
  4.   
  5.     <str name="host">${host:}</str>  
  6.     <int name="hostPort">${jetty.port:8983}</int>  
  7.     <str name="hostContext">${hostContext:solr}</str>  
  8.   
  9.     <bool name="genericCoreNodeNames">${genericCoreNodeNames:true}</bool>  
  10.   
  11.     <int name="zkClientTimeout">${zkClientTimeout:30000}</int>  
  12.     <int name="distribUpdateSoTimeout">${distribUpdateSoTimeout:600000}</int>  
  13.     <int name="distribUpdateConnTimeout">${distribUpdateConnTimeout:60000}</int>  
  14.   
  15.   </solrcloud>  
  16.   
  17.   <shardHandlerFactory name="shardHandlerFactory"  
  18.     class="HttpShardHandlerFactory">  
  19.     <int name="socketTimeout">${socketTimeout:600000}</int>  
  20.     <int name="connTimeout">${connTimeout:60000}</int>  
  21.   </shardHandlerFactory>  
  22.   -->  
  23. <!-- 結合zookeeper配置solrColound end -->  
二、在sorlhome文件夾下建立【my_solr】文件夾。

三、在【my_solr】文件夾中添加core.properties配置,內容以下:瀏覽器

[html] view plain copy 在CODE上查看代碼片派生到個人代碼片
  1. name=my_solr  
這個name的值實際上就core的名稱,能夠任意命名,爲了保證統一和方便閱讀,我的以爲最好和文件夾名稱一致。

四、將【solr-6.0.0\example\example-DIH\solr\solr】下的conf文件夾拷貝到【my_solr】文件夾下。包含以下文件:tomcat

【conf】中文件目錄以下:服務器

五、solr-5.0 以上默認對schema的管理是使用managed-schema,不能手動修改,須要使用Schema Restful的API操做。app

若是要想手動修改配置,把【conf】文件夾中managed-schema拷貝一份修改成schema.xml,在solrconfig.xml中修改以下:webapp

 

[html] view plain copy 在CODE上查看代碼片派生到個人代碼片
  1. <codecFactory class="solr.SchemaCodecFactory"/>  
  2.   <!-- 解除managed-schema管理模式 start -->  
  3.   <schemaFactory class="ClassicIndexSchemaFactory"/>  
  4.   <!-- 解除managed-schema管理模式 end -->  
重啓tomcat8,可能會報錯,查看tomcat日誌發現,比喻:

缺乏DataImportHandler的jar等,那麼將【solr-6.0.0\dist】下的solr-dataimporthandler-6.0.0.jar和solr-dataimporthandler-extras-6.0.0.jar

拷貝到【apache-tomcat-8.0.33\webapps\solr\WEB-INF\lib】下。

重啓tomcat8。若是缺乏其餘jar包,根據報錯信息添加便可。沒有異常,

訪問:【http://localhost:8080/solr/index.html#/】

會出現以下界面:


選擇my_solr,會出現以下界面:


至此其實因爲沒有索引數據,其實solr是個空殼,那麼下面寫一個應用程序插入solr索引數據。

參考:http://www.open-open.com/lib/view/open1452062296995.html

一、首先須要修改schema.xml文件,添加

 

[html] view plain copy 在CODE上查看代碼片派生到個人代碼片
  1. <field name="content_test" type="text_general" indexed="true" stored="true" multiValued="true"/>  
field的屬性和配置,能夠google一下 schema.xml 說明不少,用法也不少,這裏就不贅述。

二、添加索引數據,代碼以下:

編寫過程當中可能會報錯,最簡便的方法是將web-inf下lib裏全部jar包添加進來,而後運行,出什麼錯,就添加什麼jar包便可。

 

[java] view plain copy 在CODE上查看代碼片派生到個人代碼片
  1. package com.solr.insertData;  
  2.   
  3.   
  4. import java.io.IOException;  
  5. import java.util.ArrayList;  
  6. import java.util.List;  
  7.   
  8. import org.apache.solr.client.solrj.SolrClient;  
  9. import org.apache.solr.client.solrj.SolrServerException;  
  10. import org.apache.solr.client.solrj.impl.HttpSolrClient;  
  11. import org.apache.solr.common.SolrInputDocument;  
  12.   
  13. public class InsertProgarm {  
  14.     //solr 服務器地址  
  15.     public static final String solrServerUrl = "http://localhost:8080/solr";  
  16.     //solrhome下的core  
  17.     public static final String solrCroeHome = "my_solr";  
  18.     //待索引、查詢字段  
  19.     public static String[] docs = {"Solr是一個獨立的企業級搜索應用服務器",  
  20.                                     "它對外提供相似於Web-service的API接口",  
  21.                                     "用戶能夠經過http請求",  
  22.                                      "向搜索引擎服務器提交必定格式的XML文件生成索引",  
  23.                                     "也能夠經過Http Get操做提出查找請求",  
  24.                                     "並獲得XML格式的返回結果"};  
  25.     public static void main(String[] args) {  
  26.         SolrClient client = getSolrClient();  
  27.         int i=0;  
  28.         List<SolrInputDocument> solrDocs = new ArrayList<SolrInputDocument>();  
  29.         for (String content : docs) {  
  30.             SolrInputDocument doc = new SolrInputDocument();  
  31.             doc.addField("id", i++);  
  32.             doc.addField("content_test", content);  
  33.             solrDocs.add(doc);  
  34.         }  
  35.         try {  
  36.             client.add(solrDocs);  
  37.             client.commit();  
  38.         } catch (SolrServerException e) {  
  39.             // TODO Auto-generated catch block  
  40.             e.printStackTrace();  
  41.         } catch (IOException e) {  
  42.             // TODO Auto-generated catch block  
  43.             e.printStackTrace();  
  44.         }  
  45.           
  46.     }  
  47.     public static SolrClient getSolrClient(){  
  48.         return new HttpSolrClient(solrServerUrl+"/"+solrCroeHome);  
  49.     }  
  50.   
  51. }  
三、運行成功後,會在【solrhome/my_solr】文件夾下建立一個【data】的文件夾,這個文件夾中的內容就是咱們的solr索引。

其實其對於的是solconfig.xml中以下配置:

 

[html] view plain copy 在CODE上查看代碼片派生到個人代碼片
  1. <!-- Data Directory  
  2.   
  3.        Used to specify an alternate directory to hold all index data  
  4.        other than the default ./data under the Solr home.  If  
  5.        replication is in use, this should match the replication  
  6.        configuration.  
  7.     -->  
  8.   <dataDir>${solr.data.dir:}</dataDir>  
四、訪問http://localhost:8080/solr/index.html選擇【my_solr】core,選擇query獲得以下界面:




紅色區域是針對不一樣的ui,由於瀏覽器版本問題,我這裏面選擇使用【Use original UI】,會跳轉到http://localhost:8080/solr/old.html#/

選擇【my_solr】core,選擇query,點擊【Execute Query】查詢結果以下:


其實其訪問的url實際爲:http://localhost:8080/solr/my_solr/select?q=*%3A*&wt=json&indent=true

至於q、wt、indent等參數,表明的含義,能夠搜索solr查詢語法。


那麼至此,咱們就將solr插件完畢,結合了core和建立索引、查詢程序,完成!

相關文章
相關標籤/搜索