June 2018
Intermediate to advanced
276 pages
6h 26m
English
After installing and configuring Elasticsearch, it is time to install Kibana, to visualize data in a well-designed dashboard. Kibana is a web interface with different types of charts. You can see it as the visualization layer of our stack.
Install Kibana by using the apt-get install command, as usual:
apt-get install kibana
It won't take so long to install it:

After installing it, we can configure it by using a text editor to modify the /opt/kibana/config/kibana.yml configuration file:
sudo vi /opt/kibana/config/kibana.yml
Enable the Kibana service by using the following command:
sudo update-rc.d kibana defaults 96 9
Start the service ...
Read now
Unlock full access