Skip to content

Instantly share code, notes, and snippets.

@jkubacki
Created January 21, 2015 18:47
Show Gist options
  • Star 51 You must be signed in to star a gist
  • Fork 12 You must be signed in to fork a gist
  • Save jkubacki/e2dd904bd648b0bd4554 to your computer and use it in GitHub Desktop.
Save jkubacki/e2dd904bd648b0bd4554 to your computer and use it in GitHub Desktop.
Mac uninstall elasticsearch
#!/usr/bin/env sh
# checks to see if running
launchctl list | grep elasticsearch
launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.elasticsearch.plist
launchctl remove homebrew.mxcl.elasticsearch
pkill -f elasticsearch
rm -f ~/Library/LaunchAgents/homebrew.mxcl.elasticsearch.plist
brew uninstall elasticsearch
# double check existence
ls -al /usr/local/bin/elasticsearch*
ls -al ~/Library/LaunchAgents
@caporro
Copy link

caporro commented Feb 15, 2022

thanks

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