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.
sudo apt-get update
sudo apt-get install kibana
sudo nano /etc/kibana/kibana.ymla
sudo systemctl start kibana
sudo systemctl status kibana
sudo systemctl stop kibana
sudo systemctl restart kibana
sudo systemctl enable kibana
http://localhost:5601
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”]