Skip to content

Instantly share code, notes, and snippets.

@AtulKsol
Created October 17, 2019 07:56
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 AtulKsol/7804bdf8c2585d88cb37c36edb17f1d3 to your computer and use it in GitHub Desktop.
Save AtulKsol/7804bdf8c2585d88cb37c36edb17f1d3 to your computer and use it in GitHub Desktop.
ElasticSearch Commands for Mac

Install using Homebrew:

brew tap elastic/tap # Tap elastic 
brew search elasticsearch # Will show available versions
brew install elasticsearch@2.4 # install specific version

Start ElasticSearch Server

brew services start elasticsearch@5.6

Stop ElasticSearch Server

brew services stop elasticsearch@5.6

Check Elasticsearch version and health

curl http://localhost:9200/_cluster/health?pretty

To be available for other software. (Not tested)

brew link

COMING UP: Install multiple elastic search versions

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