Skip to content

Instantly share code, notes, and snippets.

@jkubacki
Created January 21, 2015 18:44
Show Gist options
  • Save jkubacki/bdf4f3fcc62699fa9707 to your computer and use it in GitHub Desktop.
Save jkubacki/bdf4f3fcc62699fa9707 to your computer and use it in GitHub Desktop.
Mac uninstall mongodb
#!/usr/bin/env sh
# checks to see if running
launchctl list | grep mongo
launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.mongodb.plist
launchctl remove homebrew.mxcl.mongodb
pkill -f mongod
rm -f ~/Library/LaunchAgents/homebrew.mxcl.mongodb.plist
brew uninstall mongodb
# double check existence
ls -al /usr/local/bin/mong*
ls -al ~/Library/LaunchAgents
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment