How to install Redis Open Source using RPM
| Redis Open Source |
|---|
Follow these steps to install Redis Open Source.
Create the file /etc/yum.repos.d/redis.repo with the following contents.
For Rocky Linux 9 and AlmaLinux 9
[Redis]
name=Redis
baseurl=http://packages.redis.io/rpm/rockylinux9
enabled=1
gpgcheck=1For Rocky Linux 8 and AlmaLinux 8
[Redis]
name=Redis
baseurl=http://packages.redis.io/rpm/rockylinux8
enabled=1
gpgcheck=1Run the following commands:
curl -fsSL https://packages.redis.io/gpg > /tmp/redis.key
sudo rpm --import /tmp/redis.key
sudo yum install redisRedis will not start automatically, nor will it start at boot time. To do this, run the following commands.
sudo systemctl enable redis
sudo systemctl start redis