Skip to content

Instantly share code, notes, and snippets.

@bluebycode
Last active April 8, 2016 15:39
Show Gist options
  • Save bluebycode/709d7dce443912939550 to your computer and use it in GitHub Desktop.
Save bluebycode/709d7dce443912939550 to your computer and use it in GitHub Desktop.
Installing Redis 3.0.7 in Centos 6.x
$ sudo yum group install "Development Tools" -y \
sudo yum install tcl
$ wget http://download.redis.io/releases/redis-3.0.7.tar.gz
$ tar -xvf redis-3.0.7.tar.gz
$ cd redis-3.0.7/deps
$ make hiredis lua jemalloc linenoise
$ cd ../src
$ make && make test
$ sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment