Elasticsearch2.3.3へプラグインKuromojiをインストールする
このブログは以下の場所に移転しました。
Elasticsearch2.3.3に日本語形態素解析エンジンKuromojiをインストールします。
1.事前準備
事前にpluginにpathを通しておくと便利ですのでご準備下さい。
hoshinoji.hatenablog.com
2.インストールしてみます
$ plugin install analysis-kuromoji -> Installing analysis-kuromoji... Trying https://download.elastic.co/elasticsearch/release/org/elasticsearch/plugin/analysis-kuromoji/2.3.3/analysis-kuromoji-2.3.3.zip ... Downloading .........................................................................................................................................................................................................................................................................................DONE Verifying https://download.elastic.co/elasticsearch/release/org/elasticsearch/plugin/analysis-kuromoji/2.3.3/analysis-kuromoji-2.3.3.zip checksums if available ... Downloading .DONE Installed analysis-kuromoji into /usr/local/Cellar/elasticsearch/2.3.3/libexec/plugins/analysis-kuromoji
3.確認してみましょう
elasticsearchを起動します。
$ elasticsearch -d
プラグインを確認してみます。無事に'kuromoji'のキーワードが表示されました。
$ curl -X GET 'http://localhost:9200/_nodes/plugins' { "cluster_name":"elasticsearch_xxxx", "nodes": { "lYGj0fJQQzqXRTuZ3UJWXQ": ・・・・ "plugins":[ { "name":"analysis-kuromoji", "version":"2.3.3", "description":"The Japanese (kuromoji) Analysis plugin integrates Lucene kuromoji analysis module into elasticsearch.", "jvm":true, ・・・・ } } }