kibana 6 installation and configuration in centos 7
kibana 6 installation and configuration in centos 7
IP - 172.17.20.100
Host - linuxtopic.com
Kibana default port - 5601
Step 1:
Update system
yum update
Step 2:
Downloading and Installing Kibana 6
Method 1 : Download & Install RPM Manually
cd /opt
wget https://artifacts.elastic.co/downloads/kibana/kibana-6.1.1-x86_64.rpm
rpm -ivh kibana-6.1.1-x86_64.rpm
Method 1 : Install kibana 6 using yum repo
Download and install the public signing key & create repo
rpm --import https://artifacts.elastic.co/GPG-KEY-elasticsearch
echo "[kibana-6.x]
name=Kibana repository for 6.x packages
baseurl=https://artifacts.elastic.co/packages/6.x/yum
gpgcheck=1
gpgkey=https://artifacts.elastic.co/GPG-KEY-elasticsearch
enabled=1
autorefresh=1
type=rpm-md" > /etc/yum.repos.d/kibana6.repo
yum install kibana
Configure Kibana
sed -i 's/#server.host: "localhost"/server.host: "172.17.20.100"/' /etc/kibana/kibana.yml
sed -i 's/#elasticsearch.url: "http:\/\/localhost:9200"/elasticsearch.url: "http:\/\/172.17.20.100:9200"/' /etc/kibana/kibana.yml
Start and enable kibana service
systemctl start kibana
systemctl enable kibana
Stop kibana
systemctl stop kibana
Access Kibana using Browser :
http://172.17.20.100:5601
Leave a Comment