博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
coreseek/sphinx4.1 CentOS6.4下安装
阅读量:6767 次
发布时间:2019-06-26

本文共 2139 字,大约阅读时间需要 7 分钟。

hot3.png

  一、在CentOS6.4下安装coreseek之前需要预先安装以下软件

1.打开终端 输入 su 获取管理员权限2.输入命令 yum install make gcc g++ gcc-c++ libtool autoconf automake imake mysql-devel libxml2-devel expat-devel   在使用命令的时候出现如下错误Error: Cannot find a valid baseurl for repo: addons解决方法:echo "nameserver 8.8.8.8" >> /etc/resolv.conf
二、下载安装coreseek-4.1wget http://www.coreseek.cn/uploads/csft/4.0/coreseek-4.1-beta.tar.gztar xzvf coreseek-4.1-beta.tar.gzcd coreseek-4.1-beta##安装mmsegcd mmseg-3.2.14./bootstrap #输出的warning信息可以忽略,如果出现error则需要解决./configure --prefix=/usr/local/mmseg3make && make installcd ..##安装coreseekcd csft-4.1sh buildconf.sh #输出的warning信息可以忽略,如果出现error则需要解决./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-mysqlmake && make installcd ..##测试mmseg分词,coreseek搜索cd testpackcat var/test/test.xml #此时应该正确显示中文 /usr/local/mmseg3/bin/mmseg -d /usr/local/mmseg3/etc var/test/test.xml /usr/local/coreseek/bin/indexer -c etc/csft.conf --all --rotate/usr/local/coreseek/bin/search -c etc/csft.conf 网络搜索 至此全部安装成

---------------------------------------------------------------------------------

#启动coreseek/usr/local/coreseek/bin/searchd -c /usr/local/coreseek/etc/csft.conf#创建/usr/local/coreseek/bin/indexer --rotate --all/usr/local/coreseek/bin/indexer main --rotate >>/usr/local/coreseek/var/log/merge.log/usr/local/coreseek/bin/indexer delta --rotate >>/usr/local/coreseek/var/log/delta.log#停止coreseek/usr/local/coreseek/bin/searchd -c /usr/local/coreseek/etc/csft.conf --stop

启动 searchd 服务时总是提示如下错误:index ‘test1′: search error: failed to open /var/lib/sphinx/test1.sph: sphinx 错误解决 index ‘test1′: search error: failed to open /var/lib/sphinx/test.sph:No such file or directory; NOT SERVING这个错误可能是没有建立好索引导致的输入/usr/local/coreseek/bin/indexer -c /etc/sphinx.conf –all –rotate后错误消失  WARNING: compat_sphinxql_magics=1 is deprecated; please update your application and config:compat_sphinxql_magics设置在新版中可能(网上的资料中有提到是rt索引的原因)已经被弃用了,但是程序中貌似有个默认值,需要手动在自己的配置文件中将其设置为0。此配置参数要加在:searchd{…compat_sphinxql_magics = 0}里

转载于:https://my.oschina.net/u/162418/blog/188352

你可能感兴趣的文章