CentOS 7
Sponsored Link

Elastic Stack 6 : Install Kibana2018/02/12

 
Install Kibana which is the Data Visualization tool for Elasticsearch.
[1]
Create SSL certificates first. On this example, create and use self-signed one like here.
[2] Install Kibana. Configure Repository for Elasticsearch before it like here.
[root@dlp ~]#
yum -y install kibana
# change owner of certificates

[root@dlp ~]#
chown kibana. /etc/pki/tls/certs/server.*
[root@dlp ~]#
vi /etc/kibana/kibana.yml
# line 7: uncomment and change (listen all)

server.host: "
0.0.0.0
"
# line 18: uncomment and change (specify own hostname)

server.name: "
dlp.srv.world
"
# line 21: uncomment and change if need

# if Kibana run on another computer from the one which elasticsearch is running, change this value

elasticsearch.url: "http://localhost:9200"
# line 44-46: uncomment and specify certificates

server.ssl.enabled:
true

server.ssl.certificate:
/etc/pki/tls/certs/server.crt

server.ssl.key:
/etc/pki/tls/certs/server.key
[root@dlp ~]#
systemctl start kibana

[root@dlp ~]#
systemctl enable kibana
[3] If Firewalld is running, allow ports like follows.
[root@dlp ~]#
firewall-cmd --add-port=5601/tcp --permanent

success
[root@dlp ~]#
firewall-cmd --reload

success
[4] Run Web browser on a client computer and access to [https://(server's Hostname or IP address):5601/]. It's OK if Kibana's Dashboard is displayed like follows.
Matched Content