天天看點

Solr快速實作

    在一些項目中,為了提高搜尋的效率,一般都會使用外來工具,比如現在流行的ES、SOLR等等的工具,實作業務的模糊等搜尋的快速反映。對于如何結合MySQL等操作略,具體可以檢視網絡相關文檔介紹。

初期展示:

Solr快速實作

添加一個CORE:

Solr快速實作

附帶簡單的一個查詢

Solr快速實作

環境準備

 系統環境:

CENTOS

TOMCAT

jdk

solr4.9

1、JDK 安裝略

2、tomcat安裝(下載下傳TOMCAT 不要最新的,可能有意想不到問題)

tar -zxvf apache-tomcat-7.0.82.tar.gz -C /usr/local

mv apache-tomcat-7.0.82 tomcat 

3、解壓solr(包下載下傳:http://archive.apache.org/dist/lucene/solr/4.9.0/)

tar -zxvf solr-4.9.0.tgz -C /usr/local

mv solr-4.9.0 solr

4、建立solr的站點目錄

makdir  -p /opt/tomcat/webapps

cp /usr/local/solr/example/webapps  /opt/tomcat/webapps

5、修改tomcat的solr的站點路徑

vim  /usr/local/tomcat/conf/server.xml

<Host name="localhost"  appBase="/opt/tomcat/webapps"

          unpackWARs="true" autoDeploy="true">

6、啟動tomcat後可以發現站點(/opt/tomcat/webapps)多許多檔案,且修改solr項目下web.xml

vi/opt/tomcat/webapps/solr/WEB-INF/web.xml

修改solrhome配置(注意:要把這段内容的注釋去掉,否則不生效):

            <env-entry>  

              <env-entry-name>solr/home</env-entry-name>  

              <env-entry-value>/opt/solr/example/solr</env-entry-value>  

              <env-entry-type>java.lang.String</env-entry-type>  

            </env-entry> 

7、複制/usr/local/solr/example/lib/ext下的jar包到/opt/tomcat/webapps/solr/WEB-INF/lib/下:

cp /usr/local/solr/example/lib/ext/*.jar  /opt/tomcat/webapps/solr/WEB-INF/lib/  

8、在/opt/tomcat/webapps/solr下建立classpath,并把/usr/local/solr/example/resources/log4j.properties複制到classpath中

mkdir -p /opt/tomcat/webapps/solr/classpath  

cp /usr/local/solr/example/resources/log4j.properties /opt/tomcat/webapps/solr/classpath/ 

9、配置完成重新開機tomcat

/usr/local/tomcat/bin/shutdown.sh

/usr/local/tomcat/bin/startup.sh

10、添加一個新的Core,(/opt/solr/example/solr)在資料目錄下新添加一個目錄,然後再原來的包拷貝幾個檔案到新目錄下

cp /usr/local/solr/example/exampledocs/post.jar ./mydocs/

cp /usr/local/solr/example/exampledocs/ipod_other.xml ./mydocs/

cp -r /usr/local/solr/example/multicore/core0/conf ./mydocs/    

繼續閱讀