Skip to content

Instantly share code, notes, and snippets.

@identityclash
Last active November 12, 2015 07:59
Show Gist options
  • Save identityclash/14fafb8f48120701a56c to your computer and use it in GitHub Desktop.
Save identityclash/14fafb8f48120701a56c to your computer and use it in GitHub Desktop.
redis 3.0.5 installation for ubuntu 14.04
sudo apt-get update
sudo apt-get install build-essential
wget http://download.redis.io/releases/redis-3.0.5.tar.gz
tar xzf redis-3.0.5.tar.gz
cd redis-3.0.5
make
make test
sudo make install
cd utils
sudo ./install_server.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment