共计 2671 个字符,预计需要花费 7 分钟才能阅读完成。
一、环境准备:
系统环境:
- CentOS-7.0.1406
- tomcat-7.0.29
- jdk-7u9
- solr-4.7.0
首先将软件包上传到 /tmp 目录下
1、jdk 安装
[root@svn-server /]# cd /tmp/
[root@svn-server /]#tar zxvf jdk-7u9-linux-x64.tar.gz
[root@svn-server /]#mv jdk1.7.0_09 /usr/
[root@svn-server /]#vi /etc/profile
在最后一行复制以下代码添加如下内容:
Java_HOME=/usr/jdk1.7.0_09/
CLASSPATH=.:$JAVA_HOME/lib/tools.jar
PATH=$JAVA_HOME/bin:$PATH
export JAVA_HOME CLASSPATH PATH
保存退出(:wq!)后,执行下面命令生效:
source /etc/profile
2、tomcat 安装
将 tomcat 包减压到 tmp 目录下:
[root@svn-server tmp]tar zxvf apache-tomcat-7.0.47.tar.gz
将 tomcat 包移动到 /usr/local/tomcat 下:
[root@svn-server tmp]mv apache-tomcat-7.0.47 /usr/local/tomcat
二、安装 solr
1、解压 solr
[root@svn-server tmp]tar -zxvf solr-4.7.0.tgz
2、将 solr 包移动到 opt 目录下:
[root@svn-server tmp]mv /tmp/solr-4.7.0 /opt/solr
3、把 exmaple/webapps 中的 solr.war 复制到 tomcat
[root@svn-server tmp]makdir -p /opt/tomcat/webapps
[root@svn-server tmp]cp /opt/solr/example/webapps/solr.war /opt/tomcat/webapps/
[root@svn-server tmp]vim /usr/local/tomcat/conf/server.xml
<Host name=”localhost” appBase=”/opt/tomcat/webapps”
unpackWARs=”true” autoDeploy=”true”>
将 webapps 改为 /opt/tomcat/webapps 即可;
4、启动 tomcat,solr.war 自动解压,修改 solr 项目下的 web.xml
[root@svn-server tmp]cd /usr/local/tomcat/bin/
[root@svn-server bin]./startup.sh
[root@svn-server bin]vi/opt/tomcat/webapps/solr/WEB-INF/web.xml
5、修改 solr home 配置(注意:要把这段内容的注释去掉,否则不生效):
<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/ 下:
[root@svn-server tmp]cp /opt/solr/example/lib/ext/*.jar /opt/tomcat/webapps/solr/WEB-INF/lib/
7、在 tomcat solr 下创建 classpath,并把 example/resources/log4j.properties 复制到 classpath 中:
[root@svn-server tmp]mkdir -p /opt/tomcat/webapps/solr/classpath
[root@svnserver tmp]cp/opt/solr/example/resources/log4j.properties /opt/tomcat/webapps/solr/classpath/
8、配置完成重启 tomcat
/usr/local/tomcat/bin/shutdown.sh
/usr/local/tomcat/bin/startup.sh
最终运行效果展示如下:
更多 Solr 相关教程见以下内容:
Linux(CentOS)下完美部署 Solr 搜索引擎 http://www.linuxidc.com/Linux/2014-03/98024.htm
基于 Tomcat 的 Solr3.5 集群部署 http://www.linuxidc.com/Linux/2012-12/75297.htm
在 Linux 上使用 Nginx 为 Solr 集群做负载均衡 http://www.linuxidc.com/Linux/2012-12/75257.htm
Linux 下安装使用 Solr http://www.linuxidc.com/Linux/2012-10/72029.htm
在 Ubuntu 12.04 LTS 上通过 Tomcat 部署 Solr 4 http://www.linuxidc.com/Linux/2012-09/71158.htm
Solr 实现 Low Level 查询解析(QParser)http://www.linuxidc.com/Linux/2012-05/59755.htm
基于 Solr 3.5 搭建搜索服务器 http://www.linuxidc.com/Linux/2012-05/59743.htm
Solr 3.5 开发应用教程 PDF 高清版 http://www.linuxidc.com/Linux/2013-10/91048.htm
Solr 4.0 部署实例教程 http://www.linuxidc.com/Linux/2013-10/91041.htm
Solr 的详细介绍:请点这里
Solr 的下载地址:请点这里
本文永久更新链接地址:http://www.linuxidc.com/Linux/2015-08/122242.htm