Created
January 24, 2014 10:07
-
-
Save dannycallaghan/8594864 to your computer and use it in GitHub Desktop.
Install Mongo
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
// Assuming, of course, you have Homebrew | |
brew update | |
brew install mongodb | |
// To have launchd start mongodb at login: | |
// ln -sfv /usr/local/opt/mongodb/*.plist ~/Library/LaunchAgents | |
// Then to load mongodb now: | |
// launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mongodb.plist | |
// Or, if you don't want/need launchctl, you can just run: | |
// mongod |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment