Categories
dashboard data story Data Visualization Elasticsearch Kibana plots

Install Kibana in Ubuntu 20.04

Kibana is an open source data visualization dashboard for data stored in Elasticsearch. It visualizes the content indexed on an Elasticsearch cluster using bar, line and scatter plots, or pie charts and maps on top of large volumes of data. Here is how you can install kibana.

Install Elasticsearch if not done earlier,

Install Elasticsearch in Ubuntu 20.04

Download and install the public signing key:

wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add -

Download and install the debian package

wget https://artifacts.elastic.co/downloads/kibana/kibana-7.9.0-amd64.deb
shasum -a 512 kibana-7.9.0-amd64.deb 
sudo dpkg -i kibana-7.9.0-amd64.deb

Run Kibana with systemd:

To configure Kibana to start automatically when the system boots up, run the following commands:

sudo /bin/systemctl daemon-reload
sudo /bin/systemctl enable kibana.service

Kibana can be started and stopped as follows:

sudo systemctl start kibana.service
sudo systemctl stop kibana.service

Check-in the browser,

http://localhost:5601/

That’s it, simple isn’t it?

By Satyanarayan Bhanja

Machine learning engineer

Leave a Reply

Your email address will not be published. Required fields are marked *

How to do semantic document similarity using BERT Zero-shot classification using Huggingface transformers