Install Kibana in Ubuntu 20.04

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?

Comments

2 responses to “Install Kibana in Ubuntu 20.04”

Leave a Reply

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