Last active
May 14, 2016 05:15
-
-
Save EdsonAlcala/3ccfde9554342fd25258f1dae04b8e8c to your computer and use it in GitHub Desktop.
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
| #update packages | |
| sudo apt-get update | |
| #download compiler | |
| sudo apt-get install build-essential | |
| #download tcl | |
| sudo apt-get install tcl8.5 | |
| #download latest release | |
| wget http://download.redis.io/releases/redis-stable.tar.gz | |
| tar xzf redis-stable.tar.gz | |
| cd redis-stable | |
| make | |
| make test | |
| sudo make install | |
| #once program has been installed | |
| cd utils | |
| sudo ./install_server.sh | |
| #finally | |
| sudo service redis_6379 start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment