How to install Redis Open Source using Snap
| Redis Open Source |
|---|
To install Redis via snap, run the following commands:
sudo apt update
sudo apt install redis-tools # this will install `redis-cli`
sudo snap install redisRedis will start automatically after installation and also at boot time.
Once Redis is running, you can test it by running redis-cli:
redis-cliTest the connection with the ping command:
127.0.0.1:6379> PING
PONG