To install Kibana, we can use the Kibana Docker image:
// Please use the latest available versiondocker pull docker.elastic.co/kibana/kibana:5.5.1
We can also install the Kibana web application by performing the following steps:
- Download the latest Kibana distribution from https://www.elastic.co/downloads/kibana.
- Unzip it to the desired location on your system.
- Open the config/kibana.yml configuration file from the Kibana home directory and point the elasticsearch.url to the previously configured Elasticsearch instance:
elasticsearch.url: "http://localhost:9200"
- Go to Kibana home and run bin/kibana agent -f logstash.conf on Unix-based systems and bin/kibana.bat agent -f logstash.conf on Windows.
- If you are using the ...