Created
June 6, 2013 03:28
-
-
Save richardjortega/5719111 to your computer and use it in GitHub Desktop.
Super easy REDIS install with brew
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
# install Redis on Mac OS X | |
$ brew update | |
$ brew install redis | |
# Caveats | |
# To have launchd start redis at login: | |
# ln -sfv /usr/local/opt/redis/*.plist ~/Library/LaunchAgents | |
# Then to load redis now: | |
# launchctl load ~/Library/LaunchAgents/homebrew.mxcl.redis.plist | |
# Or, if you don't want/need launchctl, you can just run: | |
# redis-server /usr/local/etc/redis.conf | |
# Log into Redis | |
$ redis-cli |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment