5

I install Elasticsearch with Debian package and installed X-pack in it. Now, I want to verify if X-Pack is successfully installed.

Is there a simple way to do verify this?

Jane S.
  • 215
  • 1
  • 4
  • 12

2 Answers2

10

You can call

GET _cat/plugins?v
dadoonet
  • 14,109
  • 3
  • 42
  • 49
1

xpack comes pre-installed from ElasticSearch 6.3 onwards. Refer to : https://www.elastic.co/what-is/open-x-pack for more info on this.

You can check if xpack is installed using: curl -XGET 'http://localhost:9200/_nodes'

The relevant output snippet looks like below:

"attributes": {
                "ml.machine_memory": "67447586816",
                "xpack.installed": "true",
                "transform.node": "true",
                "ml.max_open_jobs": "512",
                "ml.max_jvm_size": "27917287424"
            }
Binita Bharati
  • 5,239
  • 1
  • 43
  • 24