Saturday, May 16, 2015

Install Redis in Kali Linux

Redis:
Redis is an open source, BSD licensed, advanced key-value cache and store. It is often referred to as a data structure server since keys can contain strings, hashes, lists, sets, sorted sets, bitmaps and hyperloglogs.

Step 1:
sudo apt-get update
sudo apt-get install build-essential
sudo apt-get install tcl8.5
wget http://download.redis.io/releases/redis-3.0.0.tar.gz
tar xzf redis-3.0.0.tar.gz


Step 2:
cd redis-3.0.0
make


Step 3:
make test


Step 4:
sudo make install
cd utils
sudo ./install_server.sh


Step 5:
sudo service redis_6379 start
redis-cli

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.