Solr4.7.0连接MySQL

1.把Mysql的Jar包  例如:mysql-connector-java-5.1.8-bin.jar  或其他版本

  放到D:\apache-tomcat-7.0.57\webapps\solr\WEB-INF\lib下

2.然后在tomcat-solr\collection1\conf下新建一个配置文件:data-config.xml,然后在本目录下编辑配置文件:solrconfig.xml

  找到很多个requestHandler节点,在最下面增加:

    <requestHandler name="/dataimport" class="org.apache.solr.handler.dataimport.DataImportHandler">
        <lst name="defaults">
            <str name="config">data-config.xml</str>
        </lst>
    </requestHandler>
或
  
  <requestHandler name="/dataimport" class="org.apache.solr.handler.dataimport.DataImportHandler">
      <lst name="defaults">
            <str name="config">D:\apache-tomcat-7.0.57\webapps\solr\solr_home\collection1\conf\data-config.xml</str>
      </lst>
  </requestHandler>

3. 将初次下载的solr-4.10.2文件夹下的dist, contrib文件夹复制到TomCat根目录下:

  

4.然后再次修改刚才编辑过的solrconfig.xml增加两个文件夹的配置并修改一些参数:

  大约在75行默认有8个路径,但是路径不一定全对,顺着这个配置的路径去找文件夹,根据查找的层数修改这个路径配置,另增加一个新的配置,全文如下:(具体配置还要根据实际情况而定)

  <lib dir="D:\apache-tomcat\contrib\extraction\lib" regex=".*\.jar" />

  <lib dir="D:\apache-tomcat\dist\" regex="solr-cell-\d.*\.jar" />

  <lib dir="D:\apache-tomcat\contrib\clustering\lib\" regex=".*\.jar" />

  <lib dir="D:\apache-tomcat\dist\" regex="solr-clustering-\d.*\.jar" />

  <lib dir="D:\apache-tomcat\contrib\langid\lib\" regex=".*\.jar" />

  <lib dir="D:\apache-tomcat\dist\" regex="solr-langid-\d.*\.jar" />

  <lib dir="D:\apache-tomcat\contrib\velocity\lib" regex=".*\.jar" />

  <lib dir="D:\apache-tomcat\dist\" regex="solr-velocity-\d.*\.jar" />

  <lib dir="D:\apache-tomcat\dist\" regex="solr-dataimporthandler-\d.*\.jar" />

5. 将dist文件夹下的

  

  复制到webapps\solr\WEB-INF\lib下。

6.编辑data-config.xml,例如

<!-- db导入solr配置文件 -->
<dataConfig>
    <dataSource driver="com.mysql.jdbc.Driver"
                url="jdbc:mysql://localhost:3306/数据库名"
                user="root" password="000000"/>
    <document>
        <entity name="sysDictionary" pk="ID" query="SELECT
            ‘SSR_DICTIONARY‘ AS type,
            CONCAT(‘SSR_DICTIONARY_‘,DIC_ID) AS indexId,
            DIC_ID AS dicId,
            DIC_NAME AS dicName,
            DIC_VALUE AS dicValue,
            DIC_GROUP AS dicGroup,
            DIC_TYPE AS dicType,
            DIC_ORDER AS dicOrder,
            DIC_STATUS AS dicStatus,
            DIC_PARENT_ID AS dicParentId
            FROM SYS_DICTIONARY"/>
        <entity name="appPerson" pk="ID" query="SELECT
            ‘SSR_DICTIONARY‘ AS type,
            CONCAT(‘SSR_APPPERSON_‘,P_ID) AS indexId,
            P_ID AS pkid,
            P_NAME AS pname,
            P_MOBILE AS pmobile,
            P_TYPE AS ptype,
            P_CREATETIME AS pcreatetime,
            P_NOTE AS pnote,
            P_STATUS AS pstatus,
            P_ORG AS porg,
            DIC_GROUP AS dicGroup
            FROM APP_PERSON"/>
    </document>
</dataConfig>

  query是获取全部数据的SQL(solr从sql中获取那些数据),多列

  还可以配置

  deltaImportQuery是获取增量数据时使用的SQL(数据库新增数据追加到solr的数据),多列  (提示:最后索引时间与数据库字段(创建时间比较))   可以试着配置一下

7.编辑schema.xml文件  例如:

   <field name="indexId" type="string" indexed="true" stored="true" required="true" multiValued="false"/>
   <field name="type" type="string" indexed="true" stored="true" required="true" multiValued="false"/>
   <field name="indexTime" type="tdate" default="NOW/SECOND"/>

   <!-- APPPERSON FIELD -->
   <field name="pkid" type="string" indexed="true" stored="true"/>
   <field name="pname" type="string" indexed="true" stored="true"/>
   <field name="pmobile" type="string" indexed="true" stored="true"/>
   <field name="ptype" type="int" indexed="true" stored="true"/>
   <field name="pcreatetime" type="tdate" indexed="true" stored="true"/>
   <field name="pnote" type="text_ik" indexed="true" stored="true"/>
   <field name="pstatus" type="int" indexed="true" stored="true"/>
   <field name="porg" type="string" indexed="true" stored="true"/>

   <!-- SYSDICTIONARY FIELD -->
   <field name="dicId" type="string" indexed="true" stored="true"/>
   <field name="dicName" type="string" indexed="true" stored="true"/>
   <field name="dicValue" type="text_ik" indexed="true" stored="true"/>
   <field name="dicGroup" type="string" indexed="true" stored="true"/>
   <field name="dicType" type="string" indexed="true" stored="true"/>
   <field name="dicOrder" type="int" indexed="false" stored="true"/>
   <field name="dicStatus" type="string" indexed="true" stored="true"/>
   <field name="dicParentId" type="string" indexed="true" stored="true"/>

这样配置就算是完成了

时间: 2024-12-27 18:50:25

Solr4.7.0连接MySQL的相关文章

Java spring boot 2.0连接mysql异常:The server time zone value &#39;&#214;&#208;&#185;&#250;&#177;&#234;&#215;&#188;&#202;&#177;&#188;&#228;&#39; is unrecognized or represents more than one time zone

解决办法:application.yml提示信息表明数据库驱动com.mysql.jdbc.Driver'已经被弃用了.应当使用新的驱动com.mysql.cj.jdbc.Driver' com.mysql.jdbc.Driver改成com.mysql.cj.jdbc.Driver 我接着运行项目有报错 解决办法: spring: datasource: url: jdbc:mysql://localhost:3306/boot?useUnicode=true&characterEncoding

Solr4.7.0连接Oracle

1.把Oracle的Jar包  例如:ojdbc14.jar  或其他版本 放到D:\apache-tomcat-7.0.57\webapps\solr\WEB-INF\lib下 2.然后在tomcat-solr\collection1\conf下新建一个配置文件:data-config.xml,然后在本目录下编辑配置文件:solrconfig.xml 找到很多个requestHandler节点,在最下面增加: <requestHandler name="/dataimport"

PHP7.0连接MYSQL数据库代码

1.<?php $mysql_server_name='localhost'; //改成自己的mysql数据库服务器 $mysql_username="root"; //改成自己的mysql数据库用户名 $mysql_password="qmtg"; //改成自己的mysql数据库密码 $mysql_database="testmydatabase"; //改成自己的mysql数据库名 $conn=new mysqli($mysql_ser

Asp.net Core 2.0连接mysql数据库一系列错误问题

mysql:最新版 一定是最新版,不然各种报错 Install-Package Pomelo.EntityFrameworkCore.MySql 2.0.0-rtm-10057 02 03 第四部 最后

DotNetCore跨平台~EFCore2.0连接Mysql的烦恼-已解决

回到目录 对于传统的nuget包,我们习惯上用官方或者大型组织的,因为它们比较考靠谱,但就在前两天.net core2.0发布后,我把efcore也升级到2.0了,mysql.EfCore也升级到支持2.0的最新版了,然后奇葩的事情发生了,EF用不了了! Mysql和EF的包包信息 Microsoft.EntityFrameworkCore 2.0.0 MySql.Data.EntityFrameworkCore  8.0.8-dmr 上面两个大包包都是官方的,微软的EF和Oracle的MySq

如何在VS2013或更低版本中使用EntityFramework6.x连接mysql

在这就不多说entityframework相比ADO的各种利弊了.文笔不好请见谅. 近日使用entityframework6.0连接mysql,遇到各种问题,在百度谷歌上有许多帖子但是均无法解决情况.所以发一帖子提供完整可行的解决方案. 一,实体数据模型创建向导中出现MysqlDatabase: 1:安装MySQL for Visual Studio 1.1.1(含以上版本) 2:安装MySQL Connector Net 6.8.3(含以上版本) 3:安装Nuget包管理器,在vs的拓展功能中

搭建连接MySql的三层架构的ASP.NetCore2.0的WebApi

里我们用三层架构搭建一个连接MySql的ASP.netCore模板的WebApi项目 首先添加WebApi项目(ASP.NetCore版本) 右键解决方案>新建项目> 选择Web>ASP.NET Core Web应用程序(.NET Core) 选择Web API 此时的目录结构: 添加实体层Entity 右键添加>新建项目>.Net Core类库 添加后的目录结构 BaseEntity: using System; using System.Collections.Gener

用MyEclipse10.0远程连接Mysql数据库服务器

说明:本文档所有的操作均在满足以下条件的情况下操作, A.远程Linux服务器已经安装好MySQL数据库 B.本地电脑可以ping通远程服务器 C.已经成功安装了Myeclipse 一.下载mysql-connector-java-3.1.14-bin.jar 这个是连接mysql数据库的驱动器. 下载地址: http://dev.mysql.com/downloads/connector/j/5.0.html 也可以到官方网站下载,网址如下:www.mysql.com 二.在Myeclipse

转载:EntityFramework 6.0&lt; Code First &gt; 连接 Mysql数据库

转载自:http://blog.csdn.net/kmguo/article/details/19650299 网上有很多关于用EntityFrame来连接Mysql数据库的教程,可是很多并不靠谱,转载的太多了.找了很久,总算是配置好了,现在分享一下. 一,安装: 1.开发环境: VS2013与EF6 2.Mysql数据库为:Mysql Server 6.0 3.安装:Mysql for Visual Studio 1.1.1 下载位置:https://cdn.mysql.com/Downloa