码迷,mamicode.com
首页 > 其他好文 > 详细

jetty配置solr

时间:2014-07-26 02:29:26      阅读:278      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   java   color   os   文件   

1.到jetty官方网站下载jetty8


2.解压文件 把solr4.8目录中的solr目录(索引文件及配置)拷贝到jetty8根目录


3.把solr4.8/webapps下的solr.war解压  然后把解压后的目录solr拷贝到  jetty8/webapps目录下 此目录下的.war文件可以都删除


4.在jetty/context下创建solr.xml文件(其它.xml文件可以删除) 文件内容如下:

<?xml version="1.0"  encoding="ISO-8859-1"?>
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure.dtd">
<Configure class="org.eclipse.jetty.webapp.WebAppContext">
  <Set name="contextPath">/solr</Set>
  <Set name="war"><SystemProperty name="jetty.home" default="."/>/webapps/solr</Set>
  <Set name="extractWAR">false</Set>
  <Set name="copyWebDir">false</Set>
  <Set name="defaultsDescriptor"><SystemProperty name="jetty.home" default="."/>/etc/webdefault.xml</Set>
  <Get name="securityHandler">
    <Set name="loginService">
      <New class="org.eclipse.jetty.security.HashLoginService">
	    <Set name="name">Test Realm</Set>
	    <Set name="config"><SystemProperty name="jetty.home" default="."/>/etc/realm.properties</Set>
      </New>
    </Set>
    <Set name="authenticator">
      <New class="org.eclipse.jetty.security.authentication.FormAuthenticator">
        <Set name="alwaysSaveUri">true</Set>
      </New>
    </Set>
    <Set name="checkWelcomeFiles">true</Set>
  </Get>
</Configure>

5.修改jetty/bin/jetty.sh文件添加以下两行:

JETTY_HOME=/home/eboss/jetty-solr #根据实际调整此路径
export  JETTY_HOME 
JAVA_OPTIONS="-Xmx4g -Xms4g -Xmn1g -XX:MaxPermSize=128m -XX:NewRatio=1 -XX:SurvivorRatio=8 -XX:+UseParallelGC -XX:ParallelGCThreads=5 -XX:+UseParallelOldGC -XX:LargePageSizeInBytes=128m -XX:+UseFastAccessorMethods"


6.下载此包 解压后把文件(.jar)文件拷贝到jetty/ext下  或者  拷贝 solr8/lib/ext中的文件 到 jetty/lib/ext中


7.启动solr

cd jetty/bin

./jetty.sh start




jetty配置solr,布布扣,bubuko.com

jetty配置solr

标签:des   style   blog   http   java   color   os   文件   

原文地址:http://blog.csdn.net/liangpz521/article/details/38120919

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!