Skip to content

Instantly share code, notes, and snippets.

@arnklint
Created December 13, 2012 22:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arnklint/4280762 to your computer and use it in GitHub Desktop.
Save arnklint/4280762 to your computer and use it in GitHub Desktop.
Installing Redis on ubuntu
# 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