<span id="mktg5"></span>

<i id="mktg5"><meter id="mktg5"></meter></i>

        <label id="mktg5"><meter id="mktg5"></meter></label>
        最新文章專題視頻專題問答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
        主站蜘蛛池模板: 免费看片免费播放| 久久不见久久见免费视频7| 日本a级片免费看| 亚洲成a人片在线看| 无码区日韩特区永久免费系列 | 成人精品综合免费视频| 免费看男女下面日出水视频| 久久精品国产亚洲AV未满十八| 在线观看人成视频免费| 性色av极品无码专区亚洲 | 国产福利电影一区二区三区,免费久久久久久久精| 麻豆国产人免费人成免费视频 | 成人免费的性色视频| 精品亚洲成A人无码成A在线观看| 免费A级毛片无码无遮挡内射| 亚洲三级高清免费| 国产精品无码免费视频二三区| 视频免费1区二区三区| 亚洲熟妇丰满多毛XXXX| 欧洲人成在线免费| 亚洲伊人久久大香线焦| 永久免费毛片手机版在线看| 男人扒开添女人下部免费视频| 亚洲人成网亚洲欧洲无码久久| 91精品国产免费入口| 亚洲国产成人精品久久 | 亚洲综合无码精品一区二区三区 | 亚洲欧洲日产国码www| 最新猫咪www免费人成| 美女裸体无遮挡免费视频网站| 国产AV无码专区亚洲AV手机麻豆| 18禁成人网站免费观看| 亚洲av中文无码乱人伦在线观看| 亚洲日韩人妻第一页| 最近免费中文字幕高清大全| 中文字幕无码亚洲欧洲日韩| ZZIJZZIJ亚洲日本少妇JIZJIZ| **真实毛片免费观看| 黄页免费视频播放在线播放| 久久精品亚洲综合| 亚洲视频免费一区|