Skip to content

How to install Kibana and the Kibana console DEPRECATED

Martha Thompson edited this page Aug 22, 2022 · 1 revision

⚠️ THIS DOCUMENT HAS BEEN DEPRECATED! Please refer to https://github.com/GSA/i14y#docker-services for information on running Kibana with Docker.

Installation

$ brew install [email protected]

Edit your Kibana config to connect to Elasticsearch on port 9256

$ cd /usr/local/Cellar/[email protected]/<version>/
$ vi config/kibana.yml

elasticsearch.url: "http://localhost:9256"

Verify your installation

$ brew services start [email protected]

Visit http://localhost:5601 in a browser. You should see the Kibana dashboard.

Install the Console plugin

$ bin/kibana-plugin --install console
$ brew services restart [email protected]

Refresh your browser. You should now see the "Dev Tools" tab.

Test a query in the left pane of the Dev Tools console:

GET /_cat/indices

You should see a list of your ES indices in the right pane.