Created
November 15, 2016 23:09
-
-
Save aswad32/1816538e875cfa94f45a7bc5d51ff0bc to your computer and use it in GitHub Desktop.
Installing ElasticSearch 5.0.0, Kibana 5.0.1 and X-Pack with Homebrew
This file contains 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
#install elasticsearch (this will install elasticsearch as a services and automatically start after installation done) | |
brew install elasticsearch | |
#install x-pack plugin for elasticsearch | |
elasticsearch-plugin install x-pack | |
#download kibana from https://www.elastic.co/products/kibana | |
copy the archive to some where that can easily accessible | |
#install x-pack for kibana (change directory to kibana bin directory) | |
./kibana-plugin install x-pack | |
#start kibana | |
./kibana | |
#open up browser and surf http://localhost:5601 and login as elastic user and changeme password | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
you can also
brew install kibana
and
kibana-plugin
will be in the path as well :)