-
Notifications
You must be signed in to change notification settings - Fork 24
How to install Kibana and the Kibana console DEPRECATED
Martha Thompson edited this page Aug 22, 2022
·
1 revision
$ brew install [email protected]
$ cd /usr/local/Cellar/[email protected]/<version>/
$ vi config/kibana.yml
elasticsearch.url: "http://localhost:9256"
$ 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.