国产99久久精品_欧美日本韩国一区二区_激情小说综合网_欧美一级二级视频_午夜av电影_日本久久精品视频

最新文章專題視頻專題問答1問答10問答100問答1000問答2000關鍵字專題1關鍵字專題50關鍵字專題500關鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關鍵字專題關鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當前位置: 首頁 - 科技 - 知識百科 - 正文

sphinx/coreseek安裝

來源:懂視網 責編:小采 時間:2020-11-09 13:20:46
文檔

sphinx/coreseek安裝

sphinx/coreseek安裝:Sphinx 官方版本安裝 wget http://sphinxsearch.com/files/sphinx-2.0.3-release.tar.gz tar zxvf sphinx-2.0.3-release.tar.gz ./configure prefix=/usr/local/sphinx with-mysql make make insta
推薦度:
導讀sphinx/coreseek安裝:Sphinx 官方版本安裝 wget http://sphinxsearch.com/files/sphinx-2.0.3-release.tar.gz tar zxvf sphinx-2.0.3-release.tar.gz ./configure prefix=/usr/local/sphinx with-mysql make make insta

Sphinx 官方版本安裝 wget http://sphinxsearch.com/files/sphinx-2.0.3-release.tar.gz tar zxvf sphinx-2.0.3-release.tar.gz ./configure prefix=/usr/local/sphinx with-mysql make make install cd /usr/local/sphinx cp etc/sphinx-min.conf.dist etc/

Sphinx 官方版本安裝
wget http://sphinxsearch.com/files/sphinx-2.0.3-release.tar.gz
tar zxvf sphinx-2.0.3-release.tar.gz
./configure –prefix=/usr/local/sphinx –with-mysql
make && make install
cd /usr/local/sphinx
cp etc/sphinx-min.conf.dist etc/sphinx.conf
測試數據庫,新建test數據庫,導入etc/example.sql做測試
#修改mysql帳戶密碼
vim etc/sphinx.conf
#建立索引
bin/indexer -c etc/sphinx.conf test1
#查詢
bin/search -c etc/sphinx.conf test
#開啟守護進程
bin/searchd -c etc/sphinx.conf


但是官方不支持中文分詞,硬傷……
支持中文方案:
1. 安裝 Sphinx-For-Chinese
wget http://sphinx-for-chinese.googlecode.com/files/sphinx-for-chinese-2.1.0-dev-r3361.tar.bz2
tar -xvf sphinx-for-chinese-2.0.2-dev-r2894.tar.gz
$ cd sphinx-for-chinese-2.0.2-dev-r2894
$ ./configure –prefix=/usr/local/sphinx-for-chinese
–prefix 指定安裝路徑
–with-mysql 編譯mysql支持
–with-pgsql 編譯pgsql支持
$ make
$ make install

配置中文支持
wget http://sphinx-for-chinese.googlecode.com/files/xdict_1.1.tar.gz
$ tar -xvf xdict_1.1.tar.gz
$ /usr/local/sphinx-for-chinese/bin/mkdict xdict_1.1.txt xdict #從xdict_1.1.txt生成xdict文件,xdict_1.1.txt文件可以根據需要進行修改
$ cp xdict /usr/local/sphinx-for-chinese/etc/

修改sphinx.conf索引配置文件,在索引配置項中添加以下兩項
charset_type = utf-8
chinese_dictionary = /usr/local/sphinx-for-chinese/etc/xdict

2. 按照Coreseek
具體參照: http://www.coreseek.cn/products-install/install_on_bsd_linux/
$ wget http://www.coreseek.cn/uploads/csft/4.0/coreseek-4.1-beta.tar.gz
$ tar xzvf coreseek-4.1-beta.tar.gz
$ cd coreseek-4.1-beta/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 –without-unixodbc –with-mmseg –with-mmseg-includes=/usr/local/mmseg3/include/mmseg/ –with-mmseg-libs=/usr/local/mmseg3/lib/ –with-mysql ##如果提示mysql問題,可以查看MySQL數據源安裝說明
$ make && make install
$ cd ..

PHP安裝sphinx擴展
#先安裝sphinxclient
cd sphinx-2.0.3-release/api/libsphinxclient
vim sphinxclient.c
#找到 void sock_close ( int sock );
改為 static void sock_close ( int sock );
./configure –prefix=/usr/local/sphinxclient
make && make install

wget http://pecl.php.com/get/sphinx-1.3.0.tgz
tar zxvf sphinx-1.3.0.tgz
cd sphinx-1.3.0
/usr/local/php/bin/phpize
./configure –with-php-config=/usr/local/php/bin/php-config –with-sphinx=/usr/local/sphinxclient
make && make install

在php.ini加入sphinx.so

這里最后選擇Coreseek
更新索引,可以放在Crontab中執行,每天自動更新
/usr/local/coreseek/bin/indexer –rotate -c /usr/local/coreseek/etc/sphinx.conf –all

聲明:本網頁內容旨在傳播知識,若有侵權等問題請及時與本網聯系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

sphinx/coreseek安裝

sphinx/coreseek安裝:Sphinx 官方版本安裝 wget http://sphinxsearch.com/files/sphinx-2.0.3-release.tar.gz tar zxvf sphinx-2.0.3-release.tar.gz ./configure prefix=/usr/local/sphinx with-mysql make make insta
推薦度:
標簽: 安裝 官方
  • 熱門焦點

最新推薦

猜你喜歡

熱門推薦

專題
Top
主站蜘蛛池模板: 国产高清免费不卡观看 | 欧美 日韩 国产在线 | 亚洲精品在线免费看 | 在线欧美视频免费观看国产 | 精品一区二区三区五区六区七区 | 久久国产视频一区 | 看全色黄大色黄女片爽毛片 | 久久国产精品久久久久久久久久 | 亚洲一区免费在线观看 | 免费一看一级毛片人 | 二区久久国产乱子伦免费精品 | 欧美日韩激情 | 中文字幕第4页 | 国产区精品福利在线社区 | 久久性色 | 综合精品欧美日韩国产在线 | 成人免费久久精品国产片久久影院 | 在线观看视频一区二区三区 | 无遮挡免费看 | 国产精品视频网站 | 一级毛片黄 | 国内精品视频在线播放 | 在线亚洲精品国产成人二区 | 国产成人精品.一二区 | 综合 欧美 亚洲日本 | 在线免费国产视频 | 国产日韩视频 | 精品亚洲一区二区 | 日韩电影精品 | 国产不卡在线 | 欧美日韩国产综合在线 | 日韩极品视频 | 日韩欧美精品一区二区三区 | 国产精品久久久久一区二区 | 国内精品91久久久久 | 欧美精品久久久久久久久大尺度 | 亚洲精品高清在线观看 | 视频国产精品 | 欧美日本一区二区 | 国产精品久久久久久久9999 | 亚洲精品国产精品精 |