首先搭建solr環境,如:solr6.0學習(一)環境搭建html
修改各類配置文件。java
一、修改solrhome下的solr.xml文件web
註解掉zookeeper搭建集羣配置,咱們後面會採用master-slave的形式。apache
至於zookeeper的形式能夠閱讀如下這篇文章【solrCloud集羣配置指導】:http://www.aboutyun.com/thread-9432-1-1.htmljson
- <!-- 採用master-slave的方式
- <solrcloud>
-
- <str name="host">${host:}</str>
- <int name="hostPort">${jetty.port:8983}</int>
- <str name="hostContext">${hostContext:solr}</str>
-
- <bool name="genericCoreNodeNames">${genericCoreNodeNames:true}</bool>
-
- <int name="zkClientTimeout">${zkClientTimeout:30000}</int>
- <int name="distribUpdateSoTimeout">${distribUpdateSoTimeout:600000}</int>
- <int name="distribUpdateConnTimeout">${distribUpdateConnTimeout:60000}</int>
-
- </solrcloud>
-
- <shardHandlerFactory name="shardHandlerFactory"
- class="HttpShardHandlerFactory">
- <int name="socketTimeout">${socketTimeout:600000}</int>
- <int name="connTimeout">${connTimeout:60000}</int>
- </shardHandlerFactory>
- -->
二、在sorlhome文件夾下建立【my_solr】文件夾。
三、在【my_solr】文件夾中添加core.properties配置,內容以下:瀏覽器
這個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
- <codecFactory class="solr.SchemaCodecFactory"/>
-
- <schemaFactory class="ClassicIndexSchemaFactory"/>
-
重啓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文件,添加
- <field name="content_test" type="text_general" indexed="true" stored="true" multiValued="true"/>
field的屬性和配置,能夠google一下
schema.xml 說明不少,用法也不少,這裏就不贅述。
二、添加索引數據,代碼以下:
編寫過程當中可能會報錯,最簡便的方法是將web-inf下lib裏全部jar包添加進來,而後運行,出什麼錯,就添加什麼jar包便可。
- package com.solr.insertData;
-
-
- import java.io.IOException;
- import java.util.ArrayList;
- import java.util.List;
-
- import org.apache.solr.client.solrj.SolrClient;
- import org.apache.solr.client.solrj.SolrServerException;
- import org.apache.solr.client.solrj.impl.HttpSolrClient;
- import org.apache.solr.common.SolrInputDocument;
-
- public class InsertProgarm {
-
- public static final String solrServerUrl = "http://localhost:8080/solr";
-
- public static final String solrCroeHome = "my_solr";
-
- public static String[] docs = {"Solr是一個獨立的企業級搜索應用服務器",
- "它對外提供相似於Web-service的API接口",
- "用戶能夠經過http請求",
- "向搜索引擎服務器提交必定格式的XML文件生成索引",
- "也能夠經過Http Get操做提出查找請求",
- "並獲得XML格式的返回結果"};
- public static void main(String[] args) {
- SolrClient client = getSolrClient();
- int i=0;
- List<SolrInputDocument> solrDocs = new ArrayList<SolrInputDocument>();
- for (String content : docs) {
- SolrInputDocument doc = new SolrInputDocument();
- doc.addField("id", i++);
- doc.addField("content_test", content);
- solrDocs.add(doc);
- }
- try {
- client.add(solrDocs);
- client.commit();
- } catch (SolrServerException e) {
-
- e.printStackTrace();
- } catch (IOException e) {
-
- e.printStackTrace();
- }
-
- }
- public static SolrClient getSolrClient(){
- return new HttpSolrClient(solrServerUrl+"/"+solrCroeHome);
- }
-
- }
三、運行成功後,會在【solrhome/my_solr】文件夾下建立一個【data】的文件夾,這個文件夾中的內容就是咱們的solr索引。
其實其對於的是solconfig.xml中以下配置:
- <!-- Data Directory
-
- Used to specify an alternate directory to hold all index data
- other than the default ./data under the Solr home. If
- replication is in use, this should match the replication
- configuration.
- -->
- <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和建立索引、查詢程序,完成!