Install Kibana centos 7 - vikasjson/wiki GitHub Wiki

Installing Kibana Centos 7

Alt Text

Step 2 – Setup Yum Repository

First of all, install GPG key for the kibana rpm packages.
sudo rpm --import https://artifacts.elastic.co/GPG-KEY-elasticsearch

Step 3 – Then create yum repository file for the kibana. Edit /etc/yum.repos.d/kibana.repo file:

sudo nano /etc/yum.repos.d/kibana.repo
Add below content to above yum repo
[kibana-7.x]
name=Kibana repository for 7.x packages
baseurl=https://artifacts.elastic.co/packages/7.x/yum
gpgcheck=1
gpgkey=https://artifacts.elastic.co/GPG-KEY-elasticsearch
enabled=1
autorefresh=1
type=rpm-md

Step 4 – Install Kibana

After adding yum repository, just install Kibana on CentOS and RHEL system using the following command
sudo yum install kibana

Step 5 – Then enable the kibana service and start it.

sudo systemctl enable kibana
sudo systemctl start kibana
The kibana has been successfully installed and running on your CentOS or RHEL system.

For Specfic Version Of Kibana Follow the below link

https://www.elastic.co/guide/en/kibana/7.8/rpm.html