標籤:amp replace .so list mysq close 組件 添加 api
1.安裝前請先確定安裝了常用的組件
yum install -y python Python-devel
2.安裝sphinx
tar zxvf sphinx-2.2.10-release.tar.gz
cd sphinx-2.2.10-release
./configure --prefix=/usr/local/sphinx –-with-MySQL
make && make install
在make時如果出現undefined reference to libiconv的錯
錯誤描述
/usr/local/sphinx/src/sphinx.cpp:20060:undefined reference to `libiconv_open‘
/usr/local/sphinx/src/sphinx.cpp:20078: undefined reference to `libiconv‘
/usr/local/sphinx/src/sphinx.cpp:20084: undefined reference to `libiconv_close‘
collect2: ld returned 1exit status
make[2]:***[indexer]Error1 www.111cn.NET
make[2]:Leaving directory `/home/sphinx/src‘
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/sphinx/src‘
make: *** [all-recursive] Error 1
解決辦法:
開啟configure檔案,找到“#define USE_LIBICONV 1”,將注釋去掉,並將1改成0。
3.libsphinxclient 安裝(PHP模組需要)
cd api/libsphinxclient
./configure –prefix=/usr/local/sphinx
make && make install
4.安裝PHP的Sphinx模組
:http://pecl.php.Net/package/sphinx
wget http://pecl.php.net/get/sphinx-1.3.3.tgz
tar zxf sphinx-1.3.3.tgz
cd sphinx-1.3.3
/usr/local/php/bin/phpize
./configure --with-php-config=/usr/local/php/bin/php-config --with-sphinx=/usr/local/sphinx/
make && make install
5.vi /etc/php.ini
添加 :extension = sphinx.so
重啟:service php-fpm restart(nginx伺服器)
centos68安裝sphinx(php)