Last active
November 12, 2015 07:59
-
-
Save identityclash/14fafb8f48120701a56c to your computer and use it in GitHub Desktop.
redis 3.0.5 installation for ubuntu 14.04
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
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