Back to Redis

Install Redis Open Source on Linux

content/operate/oss_and_stack/install/install-stack/rpm.md

latest1.0 KB
Original Source

Install Redis Open Source on Rocky Linux 8 and 9, or AlmaLinux 8 and 9 using RPM

Follow these steps to install Redis Open Source.

  1. Create the file /etc/yum.repos.d/redis.repo with the following contents.

  2. Run the following commands:

    {{< highlight bash >}} curl -fsSL https://packages.redis.io/gpg > /tmp/redis.key sudo rpm --import /tmp/redis.key sudo yum install redis {{< / highlight >}}

Redis will not start automatically, nor will it start at boot time. To do this, run the following commands.

{{< highlight bash >}} sudo systemctl enable redis sudo systemctl start redis {{< /highlight >}}