标签:des style blog http color ar sp 文件 数据
首先说明下,之前的lamp环境用yum快速安装的现在装一个coreseek学习学习;
在安装前建议安装下这四个东西,以免后续安装报错
$ curl -O -L http://mirrors.kernel.org/gnu/m4/m4-1.4.13.tar.gz $ tar -xzvf m4-1.4.13.tar.gz $ cd m4-1.4.13 $ ./configure --prefix=/usr/local $ make && make install $ cd .. $ curl -O -L http://mirrors.kernel.org/gnu/autoconf/autoconf-2.65.tar.gz $ tar -xzvf autoconf-2.65.tar.gz $ cd autoconf-2.65 $ ./configure --prefix=/usr/local $ make && make install $ cd .. $ curl -O -L http://mirrors.kernel.org/gnu/automake/automake-1.11.tar.gz $ tar xzvf automake-1.11.tar.gz $ cd automake-1.11 $ ./configure --prefix=/usr/local $ make && make install $ cd .. $ curl -O -L http://mirrors.kernel.org/gnu/libtool/libtool-2.2.6b.tar.gz $ tar xzvf libtool-2.2.6b.tar.gz $ cd libtool-2.2.6b $ ./configure --prefix=/usr/local $ make && make install $ cd ..
下载coreseek:http://www.coreseek.cn/products-install/install_on_bsd_linux/
按照官网上介绍的一样来安装
##安装mmseg $ cd mmseg-3.2.14 $ ./bootstrap #输出的warning信息可以忽略,如果出现error则需要解决 $ ./configure --prefix=/usr/local/mmseg3 $ make && make install $ cd .. ##安装coreseek $ cd csft-3.2.14 或者 cd csft-4.0.1 或者 cd csft-4.1 $ sh buildconf.sh #输出的warning信息可以忽略,如果出现error则需要解决 $ ./configure --prefix=/usr/local/coreseek ./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 --with-mysql-includes=/usr/include/mysql --with-mysql-libs=/usr/lib64/mysql ##如果提示mysql问题,可以查看MySQL数据源安装说明 $ make && make install $ cd ..
在安装之前记得yum已经把mysql-devel这个安装好,到此coreseek就安装好了
我测试的一个配置文件,大家可以试试 配置下载
/usr/local/coreseek/bin/search -c /usr/local/coreseek/etc/csft_mysql.conf abc
用这个命令来测试下,看是否有搜索结果
在yum安装lamp的环境下安装coreseek以及php的sphinx扩展
标签:des style blog http color ar sp 文件 数据
原文地址:http://www.cnblogs.com/zhucheer/p/4048334.html