How to install kibana in centos / redhat
-
Add elasticsearch repo to yum
-
Download and install the public signing key
rpm --import https://artifacts.elastic.co/GPG-KEY-elasticsearch
-
/etc/yum.repos.d/elasticsearch.repo
[elasticsearch-6.x] name=Elasticsearch 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
-
-
yum install -y kibana
-
configure elasticsearch /etc/kibana/kibana.yml server.host: “0.0.0.0”
-
-
enable firewall
firewall-cmd --add-port=5601/tcp --permanent firewall-cmd --reload
-
systemctl start kibana
– systemctl enable kibana
-
test
curl 127.0.0.1:9200 { "name" : "l_cUCzP", "cluster_name" : "elasticsearch", "cluster_uuid" : "ueCIZ5AqSEWsMRb7VU90cw", "version" : { "number" : "6.2.1", "build_hash" : "7299dc3", "build_date" : "2018-02-07T19:34:26.990113Z", "build_snapshot" : false, "lucene_version" : "7.2.1", "minimum_wire_compatibility_version" : "5.6.0", "minimum_index_compatibility_version" : "5.0.0" }, "tagline" : "You Know, for Search" }