You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/operate/oss_and_stack/install/install-stack/rpm.md
+16-7Lines changed: 16 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,6 @@ description: How to install Redis Open Source using RPM
8
8
linkTitle: RPM
9
9
title: Install Redis Open Source on Linux
10
10
weight: 3
11
-
bannerText: These installation instructions are not yet complete for Redis 8 in Redis Open Source (Redis 8). For installation instructions prior to Redis 8, see [these pages]({{< relref "/operate/oss_and_stack/install/archive" >}}).
12
11
---
13
12
14
13
## Install Redis Open Source on Red Hat, CentOS, or Rocky Linux using RPM
@@ -18,26 +17,36 @@ Follow these steps to install Redis Open Source.
18
17
19
18
1. Create the file `/etc/yum.repos.d/redis.repo` with the following contents.
20
19
21
-
{{< highlight bash >}}
20
+
- For Rocky Linux 9 and AlmaLinux 9
21
+
{{< highlight ini >}}
22
+
[Redis]
23
+
name=Redis
24
+
baseurl=http://packages.redis.io/rpm/rockylinux9
25
+
enabled=1
26
+
gpgcheck=1
27
+
{{< /highlight >}}
28
+
29
+
- For Rocky Linux 8 and AlmaLinux 8
30
+
{{< highlight ini >}}
22
31
[Redis]
23
32
name=Redis
24
-
baseurl=http://packages.redis.io/rpm/rhel9 # replace rhel9 with the appropriate value for your platform and remove this comment
0 commit comments