Skip to content

Instantly share code, notes, and snippets.

@leocelis
Last active May 26, 2016 00:57
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 leocelis/f78acb25479ec1aef852348c6d65c0d8 to your computer and use it in GitHub Desktop.
Save leocelis/f78acb25479ec1aef852348c6d65c0d8 to your computer and use it in GitHub Desktop.
Installation
$ sudo apt-get update
$ sudo apt-get install build-essential
$ sudo apt-get install tcl8.5
$ cd /opt
$ sudo wget http://download.redis.io/releases/redis-stable.tar.gz
$ sudo tar xzf redis-stable.tar.gz
$ cd redis-stable
$ make
$ make test
$ sudo make install
$ cd utils
$ sudo ./install_server.sh
$ sudo update-rc.d redis_6379 defaults
Run redis
$ sudo service redis_6379 start
$ sudo service redis_6379 stop
Access with Redis client
$ redis-cli
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment