`
zhousheng29
  • 浏览: 149698 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

ElasticSearch 中文分词插件安装

阅读更多
1. ik
现在不支持bin/plugin -install medcl/elasticsearch-analysis-ik/1.1.3
在elasticsearch/plugins目录下建analysis-ik目录
然后直接下载安装包
https://github.com/medcl/elasticsearch-rtf/tree/master/elasticsearch/plugins/analysis-ik
cd plugins
mkdir analysis-ik
cd analysis-ik
wget https://github.com/medcl/elasticsearch-rtf/blob/master/elasticsearch/plugins/analysis-ik/elasticsearch-analysis-ik-1.1.4.jar?raw=true --no-check-certificate


词库还是一样
cd config
wget http://github.com/downloads/medcl/elasticsearch-analysis-ik/ik.zip --no-check-certificate
unzip ik.zip
rm ik.zip


2. mmseg
直接下载安装包安装
cd plugins
mkdir analysis-mmseg
cd analysis-mmseg
wget https://github.com/medcl/elasticsearch-rtf/blob/master/elasticsearch/plugins/analysis-mmseg/elasticsearch-analysis-mmseg-1.1.2.jar?raw=true --no-check-certificate


词库
cd config
mkdir mmseg
wget https://github.com/medcl/elasticsearch-rtf/raw/master/elasticsearch/config/mmseg/chars.dic --no-check-certificate
wget https://github.com/medcl/elasticsearch-rtf/raw/master/elasticsearch/config/mmseg/units.dic --no-check-certificate
wget https://github.com/medcl/elasticsearch-rtf/raw/master/elasticsearch/config/mmseg/words-my.dic --no-check-certificate
wget https://github.com/medcl/elasticsearch-rtf/raw/master/elasticsearch/config/mmseg/words.dic --no-check-certificate


3. paoding
直接下载安装包安装
cd plugins
mkdir analysis-paoding
cd analysis-paoding
wget https://github.com/medcl/elasticsearch-rtf/blob/master/elasticsearch/plugins/analysis-paoding/elasticsearch-analysis-paoding-1.0.1.jar?raw=true --no-check-certificate


词库
cd config
mkdir paoding
wget https://github.com/downloads/medcl/elasticsearch-analysis-paoding/config.zip --no-check-certificate
unzip config.zip
cp -rp config/paoding/* .
rm -rf config
rm config.zip


完整elasticsearch配置
编辑elasticsearch.yml

index:
  analysis:
    tokenizer:
      mmseg_maxword:
          type: mmseg
          seg_type: "max_word"
      mmseg_complex:
          type: mmseg
          seg_type: "complex"
      mmseg_simple:
          type: mmseg
          seg_type: "simple"
    analyzer:
      mmseg:
          alias: [news_analyzer, mmseg_analyzer]
          type: org.elasticsearch.index.analysis.MMsegAnalyzerProvider
      ik:
          alias: [ik_analyzer]
          type: org.elasticsearch.index.analysis.IkAnalyzerProvider
      ik_max_word:
          type: ik
          use_smart: false
      ik_smart:
          type: ik
          use_smart: true
      paoding:
          alias: [paoding_analyzer]
          type: org.elasticsearch.index.analysis.PaodingAnalyzerProvider





分享到:
评论
2 楼 zhousheng29 2014-01-07  
下载相应的包,其他的解压安装类似,或者不会就用图形工具操作。
1 楼 zzzhenyu 2013-12-25  
您好,请问脚本的命令怎么执行?windows环境

相关推荐

Global site tag (gtag.js) - Google Analytics