Skip to content

Instantly share code, notes, and snippets.

@aswad32
Created November 15, 2016 23:09
Show Gist options
  • Save aswad32/1816538e875cfa94f45a7bc5d51ff0bc to your computer and use it in GitHub Desktop.
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
#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
@panchicore
Copy link

you can also

brew install kibana

and kibana-plugin will be in the path as well :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment