Created
May 22, 2013 15:40
-
-
Save jasdeepsingh/5628569 to your computer and use it in GitHub Desktop.
Installing Redis on Mac OS X
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
$ cd ~/Downloads/redis-2.4.14 | |
$ make test | |
$ make |
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
$ sudo mv src/redis-server /usr/bin | |
$ sudo mv src/redis-cli /usr/bin |
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
$ mkdir ~/.redis | |
$ touch ~/.redis/redis.conf |
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
$ redis-server | |
[30974] 29 May 21:27:49 * Server started, Redis version 2.4.14 | |
[30974] 29 May 21:27:49 * The server is now ready to accept connections on port 6379 | |
[30974] 29 May 21:27:49 - 0 clients connected (0 slaves), 922304 bytes in use |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment