LoginSignup
4
1

More than 5 years have passed since last update.

Elasticsearchのプラグインの確認コマンド

Last updated at Posted at 2018-05-09

Elasticsearchのプラグインの確認コマンド

コマンド
curl -H "Content-Type: application/json"  -XGET 'https://aa.com/_nodes?plugin=true&pretty'

をうって、プラグインを確認しようとしたら、

コマンド
curl -H "Content-Type: application/json"  -XGET 'https://aa.com/_nodes?plugin=true&pretty'
{
  "error" : {
    "root_cause" : [
      {
        "type" : "illegal_argument_exception",
        "reason" : "request [/_nodes] contains unrecognized parameter: [plugin]"
      }
    ],
    "type" : "illegal_argument_exception",
    "reason" : "request [/_nodes] contains unrecognized parameter: [plugin]"
  },
  "status" : 400
}

が表示された。

どうやら、6.0以降あたりからはコマンドが

コマンド
curl -H "Content-Type: application/json"  -XGET 'https://aa.com/_nodes/plugins'

に代わったらしい、メモ代わりに書き込み

4
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
4
1