Skip to content

SRS))Kibana

strmathSAaD edited this page Nov 7, 2018 · 5 revisions

Kibana Setup

The way we setup Kibana configuration.

Development Environment

OS: CentOS 6.7(x86_64) Kibana version: 6.4.3

Download Kibana

  • Download on https://www.elastic.co/downloads/kibana
  • Download using wget(when wget package is installed already)

    Type wget https://artifacts.elastic.co/downloads/kibana/kibana-6.4.3-x86_64.rpm on terminal

  • Download PGP Key rpm --import https://artifacts.elastic.co/GPG-KEY-elasticsearch

Install Kibana

Type sudo rpm --install kibana-6.4.3-x86_64.rpm on terminal

Configuring Kibana settings

  • server.post:

    Default: 5601 Kibana is served by a back end server. This setting specifies the port to use.

  • Server.host:

    Default: "localhost" This setting specifies the host of the back end server.

  • Elasticsearch.url:

    Default: "http://localhost:9200" The URL of the Elasticsearch instance to use for all your queries. -> modify to our elasticsearch URL that this project used

Run Kibana

  • Start/stop service sudo -i service kibana start sudo -i service kibana stop
  • Run/access Kibana sudo -XGET http://localhost:5601
Clone this wiki locally