Skip to content

Commit 4f6e82e

Browse files
committed
A few updates
1 parent 928b9ef commit 4f6e82e

File tree

1 file changed

+5
-6
lines changed
  • content/operate/oss_and_stack/install/install-stack

1 file changed

+5
-6
lines changed

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

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ description: How to install Redis Open Source using RPM
88
linkTitle: RPM
99
title: Install Redis Open Source on Linux
1010
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" >}}).
1211
---
1312

1413
## Install Redis Open Source on Red Hat, CentOS, or Rocky Linux using RPM
@@ -18,7 +17,7 @@ Follow these steps to install Redis Open Source.
1817

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

21-
- For Rocky Linux 9 / AlmaLinux 9 / etc...
20+
- For Rocky Linux 9 and AlmaLinux 9
2221
{{< highlight ini >}}
2322
[Redis]
2423
name=Redis
@@ -27,7 +26,7 @@ Follow these steps to install Redis Open Source.
2726
gpgcheck=1
2827
{{< /highlight >}}
2928

30-
- For Rocky Linux 8 / AlmaLinux 8 / etc...
29+
- For Rocky Linux 8 and AlmaLinux 8
3130
{{< highlight ini >}}
3231
[Redis]
3332
name=Redis
@@ -42,12 +41,12 @@ Follow these steps to install Redis Open Source.
4241
curl -fsSL https://packages.redis.io/gpg > /tmp/redis.key
4342
sudo rpm --import /tmp/redis.key
4443
sudo yum install epel-release
45-
sudo yum install redis-server
44+
sudo yum install redis
4645
{{< / highlight >}}
4746

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

5049
{{< highlight bash >}}
51-
sudo systemctl enable redis-server
52-
sudo systemctl start redis-server
50+
sudo systemctl enable redis
51+
sudo systemctl start redis
5352
{{< /highlight >}}

0 commit comments

Comments
 (0)