Skip to content

Commit 0049d4c

Browse files
authored
Fix redis service name on installation page
1 parent cd48689 commit 0049d4c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/operate/oss_and_stack/install/install-redis/install-redis-on-linux.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,13 @@ If your Linux distribution does not currently have Snap installed, you can insta
7272
You can start the Redis server as a background process using the `systemctl` command. This only applies to Ubuntu/Debian when installed using `apt`, and Red Hat/Rocky when installed using `yum`.
7373

7474
{{< highlight bash >}}
75-
sudo systemctl start redis
75+
sudo systemctl start redis-server
7676
{{< / highlight >}}
7777

7878
To stop the server, use:
7979

8080
{{< highlight bash >}}
81-
sudo systemctl stop redis
81+
sudo systemctl stop redis-server
8282
{{< / highlight >}}
8383

8484
## Connect to Redis
@@ -107,4 +107,4 @@ Once you have a running Redis instance, you may want to:
107107
* Connect using one of the [Redis clients]({{< relref "/develop/connect/clients" >}})
108108
* [Install Redis "properly"]({{< relref "/operate/oss_and_stack/install/install-redis#install-redis-properly" >}})
109109
for production use.
110-
110+

0 commit comments

Comments
 (0)