共计 953 个字符,预计需要花费 3 分钟才能阅读完成。
准备工作
在利用 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
Solr 的详细介绍 :请点这里
Solr 的下载地址 :请点这里