分享知识-快乐自己:slor 服务的搭建

Slor 服务的搭建:

1):上传 solr  tar包到指定目录

2):解压到 指定目录下

[[email protected] tools]# tar -zxvf solr-4.10.3.tgz.tgz -C ../solr/

3):solr 整合 tomcat:

//切换到 sole dist 目录下
[[email protected] dist]# cd /opt/solr/solr-4.10.3/dist/

//拷贝 solr-4.10.3.war 到 tomcat/webapp/ 下
[[email protected] dist]# cp solr-4.10.3.war /opt/tomcat/apache-tomcat-7.0.88/webapps/solr.war

4):启动 tomcat 进行solr自动解压缩:

//切换到 tomcat 目录下
[[email protected] dist]# cd /opt/tomcat/apache-tomcat-7.0.88/bin/

//启动 tomcat
[[email protected] bin]# ./startup.sh 

5):复制 log 日志jar 到 solr中:

[[email protected] bin]# cd /opt/solr/solr-4.10.3/example/lib/ext/

[[email protected] ext]# ll

[[email protected] ext]# cp * /opt/tomcat/apache-tomcat-7.0.88/webapps/solr/WEB-INF/lib/

6):配置 solr home

[[email protected] example]# cd /opt/solr/solr-4.10.3/example/
[[email protected] example]# ll

[[email protected] example]# cp -r solr /opt/solr/solrhome

7):solr 与 solrhome 建立关系

第一种方式:修改 solr 中的 web.xml:

[[email protected] example]# cd /opt/tomcat/apache-tomcat-7.0.88/webapps/solr/WEB-INF/
[[email protected] WEB-INF]# ll

[[email protected] WEB-INF]# vim web.xml

8):启动 tomcat 进行访问 solr 测试【192.168.31.206:8080/solr】

[[email protected] WEB-INF]# cd /opt/tomcat/apache-tomcat-7.0.88/bin/
[[email protected] bin]# ./startup.sh

以上 我们的 solr 服务就已经 搭建成功了。

===================================================================================================================

将数据库数据库导入 solr索引库:(业务域定义):

导入项有:商品id、商品标题、商品买点、商品价格、商品图片、商品分类名称、商品详情

1):上传 中文 分词器 到服务器中(并解压) 点我下载

[[email protected] solr]# unzip -d /opt/solr/ IKAnalyzer2012FF_hf1.zip 

重命名:

[[email protected] solr]# mv IK\ Analyzer\ 2012FF_hf1/ IKAnalyzer2012FF_hf1

2)将 IKAnalyzer2012FF_u1.jar 添加到 solr 工程中去:

[[email protected] IKAnalyzer2012FF_hf1]# cp IKAnalyzer2012FF_u1.jar /opt/tomcat/apache-tomcat-7.0.88/webapps/solr/WEB-INF/lib/

首先创建 classes 目录:

[[email protected] IKAnalyzer2012FF_hf1]# mkdir /opt/tomcat/apache-tomcat-7.0.88/webapps/solr/WEB-INF/classes

进行拷贝:

[[email protected] IKAnalyzer2012FF_hf1]# cp IKAnalyzer.cfg.xml ext_stopword.dic mydict.dic /opt/tomcat/apache-tomcat-7.0.88/webapps/solr/WEB-INF/classes/

查看:

[[email protected] IKAnalyzer2012FF_hf1]# ll  /opt/tomcat/apache-tomcat-7.0.88/webapps/solr/WEB-INF/classes

3):定义 fieldType 指定 使用中文分词器

[[email protected] IKAnalyzer2012FF_hf1]# cd /opt/solr/solrhome/collection1/

[[email protected] collection1]# cd conf/

编辑 schema.xml :

vim schema.xml
<!-- IKAnalyzer-->
<fieldType name="text_ik" class="solr.TextField">
  <analyzer class="org.wltea.analyzer.lucene.IKAnalyzer"/>
</fieldType>

<field name="item_title" type="text_ik" indexed="true" stored="true"/>
<field name="item_sell_point" type="text_ik" indexed="true" stored="true"/>
<field name="item_price"  type="long" indexed="true" stored="true"/>
<field name="item_image" type="string" indexed="false" stored="true" />
<field name="item_category_name" type="string" indexed="true" stored="true" />
<field name="item_desc" type="text_ik" indexed="true" stored="true" />

<field name="item_keywords" type="text_ik" indexed="true" stored="false" multiValued="true"/>
<copyField source="item_title" dest="item_keywords"/>
<copyField source="item_sell_point" dest="item_keywords"/>
<copyField source="item_category_name" dest="item_keywords"/>
<copyField source="item_desc" dest="item_keywords"/>

4):测试环节:

首先 关闭 tomcat 重新启动:

[[email protected] conf]# cd /opt/tomcat/apache-tomcat-7.0.88/bin/
[[email protected] bin]# ./shutdown.sh [[email protected] bin]# ./startup.sh 

原文地址:https://www.cnblogs.com/mlq2017/p/10201558.html

时间: 2024-10-25 06:39:15

分享知识-快乐自己:slor 服务的搭建的相关文章

NFS服务的搭建与RPC协议

NFS(Network File System)的缩写,意为网络文件系统.其功能主要是通过网络在不同的主机之间共享目录或者文件.NFS客户端通过挂载将NFS服务器端共享的数据目录挂载到本地系统.由于NFS支持的功能很多,不同的功能会启动不同的端口来传输数据,由于端口的不固定会造成NFS客户端与NFS服务器端的通信障碍,为了解决这个问题就出现了RPC(Remote Procedure Call)服务.RPC即远程调用协议 相当于NFS客户端与NFS服务器端数据传输的桥梁. 本文通过NFS服务在两台

NTP服务的搭建

NTP服务的搭建 1.     准备环境 服务器系统为redhat 6.4 两块网卡eth0(连接外网),eth1(连接内网ip:192.168.1.1). 现在搭建一台时间同步服务器,服务器和公网的NTP Server 时间同步,然后负责同步局域网的时间 2.     安装NTP软件包 yum install ntp –y 3.     编辑配置文件/etc/ntp.conf (1)NTP服务的主要配置文件是/etc/ntp.conf.其中已经有了一些默认设置.如下图所示: 含义注释: res

&lt;Apache服务的搭建"三件套"《目录验证》《虚拟主机》《加密证书》&gt;

自己没事会整理一些小知识,复习原来的同时也帮助新手. vvvvvvvvvvvvv开启apache目录验证vvvvvvvvvvvvvv htpasswd -cm uers redhat  //redhat用户是虚拟的用户uers为生成加密用户的密码文件 # htpasswd -cm uers redhat  //第二次这样输入它会把第一次的输入覆盖掉 [[email protected] httpd]# cat uers redhat:$apr1$8X/YcAoY$xlwRboAtWudU26kr

yum仓库服务端搭建、客户端使用

yum源工作原理:实质是更换下载地址 ********  yum仓库服务端搭建  ******** 系统环境 服务端:10.0.0.61 [[email protected] ~]# cat /etc/redhat-release CentOS release 6.8 (Final) [[email protected] ~]# uname -r 2.6.32-642.el6.x86_64 1.安装createrepo软件: yum -y install createrepo 2.创建yum仓库

《NFS文件共享服务的搭建》RHEL

首先要清楚一点:NFS服务的共享是建立在linux和linux之间的. 配置任何服务之前我们要做的2件事: iptables  -F setenforce 0    NFS服务内核防火墙影响不大,主要还是iptables 服务端: 安装nfs服务软件包: 启动nfs服务 下面说一个NFS服务起不来的解决方法,这个错误还是比较常见的. 报错:RPC.....问题,这个是因为我把rpc给关了: 把rpc打开重启下服务: 服务端共享出去/mnt对所有的主机(以只读的方式) 客户端 终端为白色 首先要识

Web Service学习之服务端搭建与客户端调用

?工作中用到了Web Service,但是对这块不是很熟悉,决定花时间学习一下,现在记录一下最基本的入门知识点. 使用Java搭建Web Service服务端,使用Python脚本调用接口. 一.Web Service服务端 1.在Eclipse中新建一个Java工程,新建test.TestWebService类 package test; import javax.jws.WebService; import javax.xml.ws.Endpoint; @WebService public 

基于CentOS6.5进行IPA服务的搭建——客户端配置

前面介绍了IPA服务端的配置,IPA服务可以为Linux系统提供用户的集中化管理服务.下面我们看一下客户端的具体配置. 操作步骤: (1)在另外一台主机上安装CentOS6.5操作系统,作为IPA客户端主机 (2)配置客户端网络参数(配置完成后重启系统) [[email protected] ~]# vim /etc/sysconfig/network-scripts/ifcfg-eth0 DEVICE=eth0 HWADDR=00:0C:29:F4:B0:3A TYPE=Ethernet UU

ubuntu 16.04 nfs服务的搭建

nfs服务是实现Linux和Linux之间的文件共享,nfs服务的搭建比较简单. 现在介绍如何在ubuntu16.04系统中搭建nfs服务,ubuntu的搭建比红帽的还要简单. 1.安装nfs服务 sudo apt install nfs-common 2.修改配置文件 sudo vim /etc/exports 修改内容如下: /home *(rw,sync,no_root_squash) 各段表达的意思如下,根据实际进行修改 /home :共享的目录 * :指定哪些用户可以访问 * 所有可以

Red Hat 6.5 nfs服务的搭建

nfs服务是实现Linux和Linux之间的文件共享,nfs服务的搭建比较简单. 现在介绍如何在红帽6.5系统中搭建nfs服务. 1.关闭selinux服务 如果已经关闭该服务的可以直接跳过该步骤. 临时关闭 只对当前有效,电脑重启之后,该服务又会重新启动,所以一般选择永久关闭. setenforce 0 永久关闭 打开selinux的配置文件 vim /etc/sysconfig/selinux 将SELINUX修改为disabled 重启电脑 reboot 2.安装nfs服务 yum ins