DEV Community

Sumit Joshi
Sumit Joshi

Posted on

Install ElasticSearch,Logstash and kibana on Local System(windows) Part -02

Steps For Windows 10

1.Download ElasticSearch
Download Logstash
Download Kibana :- Download zip files from this link.

2.To start elastic search service
-Extract downloaded zip and open bin directory in command prompt(As Admin)

  • Type command "elasticsearch.bat"

3. To start kibana service
-Extract downloaded zip and open bin directory in command prompt(As Admin)

  • Type command "kibana.bat"

4. To start Logstash service
-Extract downloaded zip and open bin directory in command prompt(As Admin)
-create configuration file "logstash.conf" in configuration file you need to confgiure INPUT(from where you want to fetch data),OUTPUT(where you want to send data) in our example output will be elastic search (for example output{ elasticsearch { hosts =>["localhost:9200"] index => "indexForLogstash }} ,hosts in which port your elasticsearch service is running.
-Type command "logstash -f logstash.conf".

You can visualise your data in kibana using index which is in logstash configuration.

Top comments (0)