Currently I am getting these alerts:
Upgrade Required Your version of Elasticsearch is too old. Kibana requires Elasticsearch 0.90.9 or above.
Can someone tell me if there is a way I can find the exact installed version of ELS?
Currently I am getting these alerts:
Upgrade Required Your version of Elasticsearch is too old. Kibana requires Elasticsearch 0.90.9 or above.
Can someone tell me if there is a way I can find the exact installed version of ELS?
If you have installed x-pack to secure elasticseach, the request should contains the valid credential details.
Infact, if the security enabled all the subsequent requests should follow the same pattern (inline credentials should be provided).
You can Try this, After starting Service of elasticsearch Type below line in your browser.
from the Chrome Rest client make a GET request or
curl -XGET 'http://localhost:9200'
in consolerest client: http://localhost:9200
where number field denotes the
elasticsearch
version. Hereelasticsearch
version is 2.3.4To check Version of Your Running Kibana,Try this:
Step1. Start your Kibana Service.
Step2. Open Browser and Type below line,
Step3. Go to settings->About
The user @manoj has provided the correct answer to the question. From Kibana host, a request to http://localhost:9200/ will not be answered, unless ElasticSearch is also running on the same node. Kibana listens on port 5601 not 9200.
In most cases, except for DEV, ElasticSearch will not be on the same node as Kibana, for a number of reasons. Therefore, to get information about your ElasticSearch from Kibana, you should select the "Dev Tools" tab on the left and in the console issue the command: GET /
I would like to add which isn't mentioned in above answers.
From your kibana's dev console, hit following command:
This is similar to accessing
localhost:9200
from browser.Hope this will help someone.