|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
欢迎大家来到仓酷云论坛!1、情况筹办:
体系情况:CentOS-7.0.1406
tomcat-7.0.29
jdk-7u9
solr-4.7.0
起首将软件包上传到/tmp目次下
1、jdk装置
[plain]viewplaincopyprint?
- [root@svn-server/]#cd/tmp/
- [root@svn-server/]#tarzxvfjdk-7u9-linux-x64.tar.gz
- [root@svn-server/]#mvjdk1.7.0_09/usr/
- [root@svn-server/]#vi/etc/profile
在最初一行复制以下代码增加以下内容:
[plain]viewplaincopyprint?
- JAVA_HOME=/usr/jdk1.7.0_09/
- CLASSPATH=.:$JAVA_HOME/lib/tools.jar
- PATH=$JAVA_HOME/bin:$PATH
- exportJAVA_HOMECLASSPATHPATH
保留加入(:wq!)后,实行上面下令失效:[plain]viewplaincopyprint?
2、tomcat装置
将tomcat包减压到tmp目次下:
[plain]viewplaincopyprint?
- [root@svn-servertmp]tarzxvfapache-tomcat-7.0.47.tar.gz
- 将tomcat包挪动到/usr/local/tomcat下:
[plain]viewplaincopyprint?
- [root@svn-servertmp]mvapache-tomcat-7.0.47/usr/local/tomcat
2、装置solr
1、解压solr
[plain]viewplaincopyprint?
- [root@svn-servertmp]tar-zxvfsolr-4.7.0.tgz
2、将solr包挪动到opt目次下:
[plain]viewplaincopyprint?
- [root@svn-servertmp]mv/tmp/solr-4.7.0/opt/solr
3、把exmaple/webapps中的solr.war复制到tomcat[plain]viewplaincopyprint?
- [root@svn-servertmp]makdir-p/opt/tomcat/webapps
- [root@svn-servertmp]cp/opt/solr/example/webapps/solr.war/opt/tomcat/webapps/
- [root@svn-servertmp]vim/usr/local/tomcat/conf/server.xml
[plain]viewplaincopyprint?
- <Hostname="localhost"appBase="/opt/tomcat/webapps"
- unpackWARs="true"autoDeploy="true">
如图将webapps改成/opt/tomcat/webapps便可;
4、启动tomcat,solr.war主动解压,修正solr项面前目今的web.xml
[plain]viewplaincopyprint?
- [root@svn-servertmp]cd/usr/local/tomcat/bin/
- [root@svn-serverbin]./startup.sh
- [root@svn-serverbin]vi/opt/tomcat/webapps/solr/WEB-INF/web.xml
5、修正solrhome设置(注重:要把这段内容的正文往失落,不然不失效):
[html]viewplaincopyprint?
- <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>
6、复制solr/example/lib/ext下的jar包到/tomcat/../solr/WEB-INF/lib/下:
[html]viewplaincopyprint?
- [root@svn-servertmp]cp/opt/solr/example/lib/ext/*.jar/opt/tomcat/webapps/solr/WEB-INF/lib/
7、在tomcatsolr下创立classpath,并把example/resources/log4j.properties复制到classpath中:
[html]viewplaincopyprint?
- [root@svn-servertmp]mkdir-p/opt/tomcat/webapps/solr/classpath
- [root@svnservertmp]cp/opt/solr/example/resources/log4j.properties/opt/tomcat/webapps/solr/classpath/
8、设置完成重启tomcat
[html]viewplaincopyprint?
- /usr/local/tomcat/bin/shutdown.sh
- /usr/local/tomcat/bin/startup.sh
终极运转效果展现以下:
转载请说明出处:http://blog.csdn.net/fwj380891124/
欢迎大家来到仓酷云论坛! |
|