2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Elasticsearch 6.2.3 で インストール済みプラグインのリストを確認する

Posted at

Elasticsearch を使っていてどんなプラグインを入れたか確認したくなった際のコマンドになります。
内容としては以下のドキュメントから抜粋してまとめたものになります。
Listing, Removing and Updating Installed Plugins

手元の環境は以下になります。

  • Ubuntu 16.04 LTS
  • Elasticsearch 6.2.3

次のように実行します。

$ sudo bin/elasticsearch-plugin list

プラグインがインストールされていれば以下のような結果になります。

analysis-icu
analysis-kuromoji
ingest-attachment

プラグインを削除したい場合は以下のように実行します。

$ sudo bin/elasticsearch-plugin remove ingest-attachment
$ sudo /etc/init.d/elasticsearch restart
2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?