linux下coreseek(sphinx)安装

sphinx学习请到 http://cswei.blog.51cto.com/3443978/1250672
在安装过程中,注意看信息提示,根据提示,可能需要安装若干依赖包,yum安装即可。

下载 coreseek

cd /usr/local/src
wget http://www.coreseek.cn/uploads/csft/3.2/coreseek-3.2.14.tar.gz
tar zxvf coreseek-3.2.14.tar.gz
cd coreseek-3.2.14
安装mmseg
cd mmesg-3.2.14
./bootstrap #输出的warning信息可以忽略,如果出现error则需要解决
./configure �Cprefix=/usr/local/mmseg3
make
make install
安装coreseek
     需提前安装mysql以支持mysql数据源,如果没有请yum install -y mysql-devel
cd ..
cd csft-3.2.14
sh buildconf.sh #输出的warning信息可以忽略,如果出现error则需要解决
                      #注意:可能出现提示某个文件找不到(甚至说autoconf版本过低),执行信息提示给出的命令 autoreconf 即可
./configure �Cprefix=/usr/local/coreseek �Cwithout-unixodbc �Cwith-mmseg �Cwith-mmseg-includes=/usr/local/mmseg3/include/mmseg/ �Cwith-mmseg-libs=/usr/local/mmseg3/lib/ �Cwith-mysql
make
make install


你可能感兴趣的:(sphinx,coreseek)