Solr中通过DIH从MySQL创建索引

2022-07-01 14:02:12 浏览数 (1)

准备工作

在利用Solr的DataImportHandler来导入MySQL的数据前,需要MySQL满足一些条件。

1.运行用户从远程登录,当然如果从本地MySQL数据库创建索引的话可以无视。 修改/etc/mysql/my.cnf: bind-address = 0.0.0.0

1.用户权限,确保用户在username@'%'具有select权限。 以管理员账号登录MySQL,在命令行中运行: grant select on database.* to username@'%'; flush privileges; select * from mysql.user where user='username'; 配置Solr

Solr的配置见官方文档即可。

Solr3.6.1 在Tomcat6下的环境搭建 http://www.linuxidc.com/Linux/2013-01/77664.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

0 人点赞