Skip to content

Instantly share code, notes, and snippets.

@jose8a
Created March 1, 2016 11:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jose8a/446afabe48cce3a9d1ea to your computer and use it in GitHub Desktop.
Save jose8a/446afabe48cce3a9d1ea to your computer and use it in GitHub Desktop.
#!/bin/bash
### URL: https://www.elastic.co/downloads/kibana
### Version 4.1.5 ... compatible with ES >= 2.0
### Download and unpack
wget https://download.elastic.co/kibana/kibana/kibana-4.4.1-linux-x64.tar.gz
tar -xvzf ./kibana-4.4.1-linux-x64.tar.gz
### Version 4.1.5 ... compatible with ES < 2.0
### Download and unpack
wget https://download.elastic.co/kibana/kibana/kibana-4.1.5-linux-x64.tar.gz
tar -xvzf ./kibana-4.1.5-linux-x64.tar.gz
### Setup
### ... Open config/kibana.yml in an editor
### ... Set the elasticsearch.url to point at your Elasticsearch instance
### ... Run ./bin/kibana
### Open Kibana server
### ... Point your browser at http://yourhost.com:5601
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment