Installing Kibana on Ubuntu

Author: Al-mamun Sarkar Date: 2021-03-23 18:10:43

Kibana is a graphical user interface for working with Elasticsearch. So before installing KIbana make sure that Elasticsearch has been install on your system. Click here to install Elasticsearch.

 

Install Kibana:

sudo apt-get update
sudo apt-get install kibana

 

Configure Kibana:

sudo nano /etc/kibana/kibana.ymla

 

Start Kibana:

sudo systemctl start kibana

 Check Kibana Status:

sudo systemctl status kibana

 Stop Kibana:

sudo systemctl stop kibana

  Restart Kibana:

sudo systemctl restart kibana

 

Enable Kibana for launch at boot:

sudo systemctl enable kibana

 

Go to http://localhost:5601 to access Kibana 

http://localhost:5601

 

You can change Kibana Configuration:

sudo vim /etc/kibana/kibana.yml

Change the following based on your Elesticsearch server:

server.port: 5601

server.host: “localhost”

elasticsearch.hosts: [“http://localhost:9200”]