centos7安装配置coreseek(sphinx)
[*]安装依赖:
yum-yinstallmakegccgcc-c++libtoolautoconfautomakeimakemariadbmariadb-servermariadb-devel libxml2-devel expat-devel
[*]下载软件包:
a. 克隆:
gitclonehttps://github.com/dollarphper/soft.git
b. 进入目录:
cdsoft
[*]解压缩:
tar-xzfcoreseek-4.1-beta.tar.gz
[*]安装mmseg:
a. 进入目录:
cdcoreseek-4.1-beta/mmseg-3.2.14/
b. 安装:
./bootstrap
./configure --prefix=/usr/local/mmseg3
make && make install
[*]安装coreseek:
a. 进入目录:
cd../csft-4.1
b. 修改配置文件:
vimconfigure.ac
将
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
修改为
AM_INIT_AUTOMAKE([-Wall foreign])
c. 下载软件:
yum-yinstallpatch
d. 打补丁:
patch-p1</home/lee/sphinx/sphinxexpr.cpp-csft-4.1-beta.patch
输入:
/home/lee/sphinx/coreseek-4.1-beta/csft-4.1/src/sphinxexpr.cpp
http://i2.运维网.com/images/blog/201805/22/7bda8bb8d527430b3e4313e45c5431c3.png
e. 安装:
shbuildconf.sh
./configure--prefix=/usr/local/coreseek--without-unixodbc--with-mmseg--with-mmseg-includes=/usr/local/mmseg3/include/mmseg/--with-mmseg-libs=/usr/local/mmseg3/lib/--with-mysql
make&&make install
[*]测试:
a. 进入测试目录:
cd../testpack/
b. 查看测试文件:
catvar/test/test.xml
http://i2.运维网.com/images/blog/201805/22/b9f4baa3050b36218a434ce26fa7a720.png
c. 测试中文分词:
/usr/local/mmseg3/bin/mmseg-d/usr/local/mmseg3/etc var/test/test.xml
http://i2.运维网.com/images/blog/201805/22/d0ada2b4a7002fbd69560ce7f9445a43.png
d. 创建索引:
/usr/local/coreseek/bin/indexer-cetc/csft.conf--all
http://i2.运维网.com/images/blog/201805/22/9b4db72cf1151c9af3dcdab8d7ccd36a.png
e. 搜索测试:
/usr/local/coreseek/bin/search-cetc/csft.conf李彦宏
http://i2.运维网.com/images/blog/201805/22/ae0726db656bf203992eb7dcec1c648a.png
[*]php连接sphinx:
a. 安装扩展:
a-1. 进入目录:
cd../csft-4.1/api/libsphinxclient/
a-2. 编译:
aclocal
libtoolize --force
automake --add-missing
autoconf
autoheader
make clean
./configure--prefix=/usr/local/sphinxclient
make&&make install
a-3. 回到软件包目录:
cd../../../../
a-4. 解压:
tar-xzfsphinx-1.3.0.tgz
a-5. 安装php-devel:
yum-yinstallphpphp-devel
a-6. 进入目录:
cdsphinx-1.3.0
a-7. 安装:
phpize
./configure --with-php-config=/usr/bin/php-config --with-sphinx=/usr/local/sphinxclient
make && make install
a-8. 开启php-sphinx扩展:
vim/etc/php.ini
在末尾加上:
extension=sphinx.so
b. 测试:
b-1. 启动mariadb服务:
systemctlstartmariadb
b-2. 添加测试数据:
mysql-uroot-p123456</usr/local/coreseek/etc/example.sql
b-3. 复制配置文件:
cp/usr/local/coreseek/etc/sphinx.conf.dist/usr/local/coreseek/etc/csft.conf
cp/home/lee/sphinx/coreseek-4.1-beta/mmseg-3.2.14/data/*/usr/local/mmseg3/etc/
b-4. 修改配置文件:
vim/usr/local/coreseek/etc/csft.conf
source src1
{
type = mysql
sql_host = localhost
sql_user = root
sql_pass = 123456
sql_db = test
sql_port = 3306# optional, default is 3306
sql_query_pre = SET NAMES utf8
sql_sock = /var/lib/mysql/mysql.sock
sql_query = \
SELECT id, group_id, UNIX_TIMESTAMP(date_added) AS date_added, title, content \
FROM documents
sql_attr_uint = group_id
sql_attr_timestamp= date_added
sql_ranged_throttle = 0
sql_query_info_pre = SET NAMES utf8
sql_query_info = SELECT * FROM documents WHERE id=$id
}
source src1throttled : src1
{
sql_ranged_throttle = 100
}
index test1
{
source = src1
path = /usr/local/coreseek/var/data/test1
docinfo = extern
mlock = 0
morphology = none
min_word_len = 1
html_strip = 0
charset_dictpath = /usr/local/mmseg3/etc/
charset_type = zh_cn.utf-8
}
indexer
{
mem_limit = 128M
}
searchd
{
listen = 9312
listen = 9306:mysql41
log = /usr/local/coreseek/var/log/searchd.log
query_log = /usr/local/coreseek/var/log/query.log
read_timeout = 5
client_timeout = 300
max_children = 30
pid_file = /usr/local/coreseek/var/log/searchd.pid
max_matches = 1000
seamless_rotate = 1
preopen_indexes = 1
unlink_old = 1
mva_updates_pool = 1M
max_packet_size = 8M
max_filters = 256
max_filter_values = 4096
max_batch_queries = 32
workers = threads # for RT to work
}
b-5. :复制二进制文件:
cp/usr/local/coreseek/bin/*/usr/bin/
b-6. 生成索引:
indexer--rotate--all
b-7. 启动服务:
searchd
b-8. 停止服务:
searchd--stop
b-9. 测试:
b-9-1. 编写测试脚本:
vimtest.php
页:
[1]