Elastic Search Part 2

Download Elastic search 


unzip elasticsearch-5.2.1.zip
cd elasticsearch-5.2.1
To start :./bin/elasticsearch

Install Kibana 

Ensure to install the same version of Kibana as ES.

wget https://artifacts.elastic.co/downloads/kibana/kibana-5.2.1-darwin-x64.tar.gz

Extract the tar
tar -zxvf kibana-5.2.1-darwin-x64.tar.gz

Configuring Kibana
open config/kibana.yml

# The URL of the Elasticsearch instance to use for all your queries.
elasticsearch.url: "http://localhost:9200"
Save changes 

Start the server :
bin/kibana


For MAC :
kibana-5.2.1-darwin-x64.tar.gz

NOTE : Version of ES and Kibana both have to be the same.

Comments