-
Notifications
You must be signed in to change notification settings - Fork 0
SRS))Kibana
strmathSAaD edited this page Nov 7, 2018
·
5 revisions
The way we setup Kibana configuration.
OS: CentOS 6.7(x86_64) Kibana version: 6.4.3
- 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
Type sudo rpm --install kibana-6.4.3-x86_64.rpm
on terminal
- 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
- Start/stop service
sudo -i service kibana start
sudo -i service kibana stop
- Run/access Kibana
sudo -XGET http://localhost:5601