0
0

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のトライアルライセンスを有効するコマンド

Last updated at Posted at 2020-02-05

以下コマンドで有効化ができます。
#localhostの値は環境に応じて変更してください

curl -XPOST  'http://localhost:9200/_license/start_trial?acknowledge=true'

以下コマンドで有効期限が確認できます。

curl -XGET  'http://localhost:9200/_license/' 
{
  "license" : {
    "status" : "active",
    "uid" : "e08feb53-b220-40a7-8275-db53e8f44664",
    "type" : "trial",
    "issue_date" : "2020-02-06T10:35:16.362Z",
    "issue_date_in_millis" : 1580985316362,
    "expiry_date" : "2020-03-07T10:35:16.362Z",
    "expiry_date_in_millis" : 1583577316362,
    "max_nodes" : 1000,
    "issued_to" : "sb_hitachi",
    "issuer" : "elasticsearch",
    "start_date_in_millis" : -1
  }
}
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?