Answers for "redis download"

1

redis download

$ wget http://download.redis.io/releases/redis-6.0.8.tar.gz
$ tar xzf redis-6.0.8.tar.gz
$ cd redis-6.0.8
$ make
Posted by: Guest on September-16-2020
1

install redis

brew install redis
Posted by: Guest on May-09-2020
0

Redis download and installtion

======> Download and Extract Source Code
cd /tmp
curl -O http://download.redis.io/redis-stable.tar.gz
tar xzvf redis-stable.tar.gz
cd redis-stable

======> Build and install Redis
make
make test
sudo make install

======> Cofigure Redis
sudo mkdir /etc/redis
sudo cp /tmp/redis-stable/redis.conf /etc/redis
sudo nano /etc/redis/redis.conf =======> change supervised directive to systemd( supervised no -> supervised systemd)
Posted by: Guest on August-16-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language