Created
March 1, 2016 11:53
-
-
Save jose8a/446afabe48cce3a9d1ea to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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