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
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
cd redis-3.0.0
make
make
Step 3:
make test
Step 4:
sudo make install
cd utils
sudo ./install_server.sh
sudo ./install_server.sh
Step 5:
sudo service redis_6379 start
redis-cli
redis-cli
This guide installs Redis on Kali Linux. Redis is an open source in memory data store used as a cache, message broker, or fast key value database, with structures such as lists, sets, and hashes.
Because it keeps data in memory, Redis is very fast, which makes it popular for caching and real time features. The install is a short series of apt commands followed by starting the service.





Comments
Post a Comment