在tomcat中运行solr-4.3.0

系统 1915 0

下载solr 4.3,tomcat,解压等操作不必多说.  

将解压后的solr下的dist目录中的solr-4.3.0.war ,copy到tomcat的webapps目录中,并改名为solr.war

 

Solr uses UTF-8 file encoding. That means that we need to ensure
that Apache Tomcat will be informed that all requests and responses made should use that
encoding. To do that, we modified the server.xml file in the way shown in the following code:

      
        <
      
      
        Connector 
      
      
        port
      
      
        ="8080"
      
      
         protocol
      
      
        ="HTTP/1.1"
      
      
        

connectionTimeout
      
      
        ="20000"
      
      
        

redirectPort
      
      
        ="8443"
      
      
        

URIEncoding
      
      
        ="UTF-8"
      
      
        />
      
    

 

The third step is to create a proper context file. To do that, create a solr.xml file
in the $TOMCAT_HOME/conf/Catalina/localhost directory. The contents of
the file should look like the following code:

      
        <
      
      
        Context 
      
      
        path
      
      
        ="/solr"
      
      
         docBase
      
      
        ="/usr/share/tomcat/webapps/solr.war"
      
      
        

debug
      
      
        ="0"
      
      
         crossContext
      
      
        ="true"
      
      
        >
      
      
        <
      
      
        Environment 
      
      
        name
      
      
        ="solr/home"
      
      
         type
      
      
        ="java.lang.String"
      
      
         value
      
      
        ="/

usr/share/solr/"
      
      
         override
      
      
        ="true"
      
      
        />
      
      
        </
      
      
        Context
      
      
        >
      
    

以上配置中,docBase为tomcat/webapps/solr.war的路径,下面的路径为下载solr目录中example/solr的路径,根据自己需要更改配置。

这时候运行tomcat会报错     org.apache.catalina.core.StandardContext startInternal SEVERE: Error filterStart

              org.apache.catalina.core.StandardContext startInternal

 上网查了下原因,首先看这个 http://wiki.apache.org/solr/SolrLogging    ,solr4.3的war包中不包含任何日志的jar包,你需要自己手动添加。将solr目录下example\lib\ext中的jar包copy到tomcat的lib中。这时候虽然添加jar包,但是没有对应的日志配置,需要将example\resources中的log4j.properties也放到tomcat/lib中。当然,你可以根据自己的需要更改配置。

 

启动tomcat,可以看到日志信息,确认已经成功启动  打开 http://localhost:8080/solr/ 

If you see the page with links to administration pages of each of the cores defined, that
means that your Solr is up and running.

在tomcat中运行solr-4.3.0


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论