Created
December 13, 2012 22:43
-
-
Save arnklint/4280762 to your computer and use it in GitHub Desktop.
Installing Redis on ubuntu
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
# I needed to install tcl8.5 to run the tests: sudo apt-get install tcl8.5 | |
# download and unpack the sources (see http://redis.io/download for the latest stable version) | |
wget http://redis.googlecode.com/files/redis-2.4.5.tar.gz | |
tar -zxvf redis-2.4.5.tar.gz | |
# build | |
cd redis-2.4.5/ | |
make | |
# test | |
make test | |
#install | |
sudo make install | |
cd utils | |
sudo ./install_server.sh | |
# run the redis cli (/usr/local/bin/redis-cli) | |
redis-cli |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment