b. Installing and configuring Kibana
Installing Kibana is quite straight forward
$ wget https://artifacts.elastic.co/downloads/kibana/kibana-7.8.0-amd64.deb
$ sudo dpkg -i kibana-7.8.0-amd64.deb
Edit
/etc/kibana/kibana.yml
Kibana's configuration file according to your network preferences and leave the rest at it is.#Listening port
server.port: 5601
#Server's IP
server.host: "192.168.20.222"
#Node Name
server.name: "elk_allinone"
$ sudo systemctl start kibana
$ sudo systemctl status kibana
$ sudo /bin/systemctl daemon-reload
$ sudo /bin/systemctl enable kibana.service

Kibana Up and running