<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
        主站蜘蛛池模板: 最好免费观看韩国+日本| 亚洲毛片在线免费观看| 国产成人免费网站在线观看| 亚洲AV无码乱码麻豆精品国产| 91福利免费视频| 亚洲第一成年男人的天堂| 国产va在线观看免费| 亚洲AV第一页国产精品| 精品国产污污免费网站| 亚洲天堂在线播放| 99热这里只有精品6免费| 亚洲视频免费在线播放| 国产人成免费视频网站| 亚洲av极品无码专区在线观看| 99久久免费精品国产72精品九九| 亚洲精品国产摄像头| 国产成人免费永久播放视频平台| 国产精品亚洲av色欲三区| 亚洲国产精品13p| 精品四虎免费观看国产高清午夜| 亚洲人成网站影音先锋播放| 国产又大又粗又长免费视频 | 中文在线观看免费网站| 伊人婷婷综合缴情亚洲五月| 午夜免费啪视频在线观看| 亚洲综合色一区二区三区小说| 在线观看成人免费视频不卡| 亚洲国产区男人本色| 国产精品亚洲w码日韩中文| 小日子的在线观看免费| 亚洲乱亚洲乱妇无码| 亚洲一区二区三区在线播放| 久久午夜无码免费| 国产亚洲精aa在线看| 亚洲国产成人乱码精品女人久久久不卡 | 好湿好大好紧好爽免费视频| 亚洲黄色高清视频| 国产精品无码一区二区三区免费| www一区二区www免费| 亚洲精品免费在线视频| 无码专区一va亚洲v专区在线|