Forked from jkubacki/gist:e2dd904bd648b0bd4554
Last active
September 9, 2021 04:35
-
-
Save govindpatel/0660b33a343b807664972b53c3b12ca0 to your computer and use it in GitHub Desktop.
Mac uninstall elasticsearch / install
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
#!/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 | |
# remove the data folder for elasticsearch | |
# to list the location of data | |
brew info elasticsearch | |
#install | |
brew search elasticsearch | |
#installing elasticsearch17 | |
brew install homebrew/versions/elasticsearch17 |
very useful 👍
Useful,tks
+1 thanks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks bro, saved my life today!