Skip to content

Instantly share code, notes, and snippets.

@EdsonAlcala
Last active May 14, 2016 05:15
Show Gist options
  • Select an option

  • Save EdsonAlcala/3ccfde9554342fd25258f1dae04b8e8c to your computer and use it in GitHub Desktop.

Select an option

Save EdsonAlcala/3ccfde9554342fd25258f1dae04b8e8c to your computer and use it in GitHub Desktop.
#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