Created
May 15, 2013 13:39
-
-
Save noodles-v6/5584068 to your computer and use it in GitHub Desktop.
install redis
This file contains hidden or 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 /usr/local | |
mkdir redis-latest-install | |
cd redis-latest-install | |
curl http://redis.googlecode.com/files/redis-2.6.13.tar.gz | tar xz --strip-components=1 | |
#In order to install Redis binaries into /usr/local/bin just use: | |
# | |
# % make install | |
# | |
#You can use "make PREFIX=/some/other/directory install" if you wish to use a | |
#different destination. | |
make install | |
make clean |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment