标签:
http://www.elasticsearch.org/下载最新的ElastiSearch版本。
解压下载文件。
cd到${esroot}/bin/,执行elasticsearch启动。
使用curl -XPOST localhost:9200/_shutdown关闭ES。
cd ${esroot}/bin/。
执行./plugin -install mobz/elasticsearch-head
./plugin -install lukas-vlcek/bigdesk/<bigdesk_version>
git clone https://github.com/medcl/elasticsearch-analysis-ik.git
mvn clean install(前提是配置了maven)。
将target中的elasticsearch-analysis-ik-xxx.jar复制到${esroot}/plugins/ik/。
复制elasticsearch-analysis-ik(git repository)中config目录下ik内容到{esroot}/config。
配置${esroot}/conf/elasticsearch.yml,在最下方加入:
################################## Analyzer ############################### index: analysis: analyzer: 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
head:http://localhost:9200/_plugin/head/
bigdesk:http://localhost:9200/_plugin/bigdesk/
ik:curl ‘localhost/idx/_analyze?analyzer=ik_smart’ -d ‘中国人和中国’
标签:
原文地址:http://my.oschina.net/u/2429470/blog/492011