From 0049d4c4bae959a5e49a585a9f1178b567017ede Mon Sep 17 00:00:00 2001 From: Andrew Kazakov Date: Thu, 10 Oct 2024 20:28:19 +0300 Subject: [PATCH 1/2] Fix redis service name on installation page --- .../install/install-redis/install-redis-on-linux.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/operate/oss_and_stack/install/install-redis/install-redis-on-linux.md b/content/operate/oss_and_stack/install/install-redis/install-redis-on-linux.md index fa05b5029a..67b2441ec9 100644 --- a/content/operate/oss_and_stack/install/install-redis/install-redis-on-linux.md +++ b/content/operate/oss_and_stack/install/install-redis/install-redis-on-linux.md @@ -72,13 +72,13 @@ If your Linux distribution does not currently have Snap installed, you can insta 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`. {{< highlight bash >}} -sudo systemctl start redis +sudo systemctl start redis-server {{< / highlight >}} To stop the server, use: {{< highlight bash >}} -sudo systemctl stop redis +sudo systemctl stop redis-server {{< / highlight >}} ## Connect to Redis @@ -107,4 +107,4 @@ Once you have a running Redis instance, you may want to: * Connect using one of the [Redis clients]({{< relref "/develop/connect/clients" >}}) * [Install Redis "properly"]({{< relref "/operate/oss_and_stack/install/install-redis#install-redis-properly" >}}) for production use. - \ No newline at end of file + From 30dc741134c3f90324fce84a6ca8de718739ea4f Mon Sep 17 00:00:00 2001 From: Andrew Kazakov Date: Thu, 10 Oct 2024 21:42:19 +0300 Subject: [PATCH 2/2] Fix redis service name on installation page Co-authored-by: David Dougherty --- .../install/install-redis/install-redis-on-linux.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/operate/oss_and_stack/install/install-redis/install-redis-on-linux.md b/content/operate/oss_and_stack/install/install-redis/install-redis-on-linux.md index 67b2441ec9..a3e0332b27 100644 --- a/content/operate/oss_and_stack/install/install-redis/install-redis-on-linux.md +++ b/content/operate/oss_and_stack/install/install-redis/install-redis-on-linux.md @@ -72,13 +72,13 @@ If your Linux distribution does not currently have Snap installed, you can insta 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`. {{< highlight bash >}} -sudo systemctl start redis-server +sudo systemctl start # redis or redis-server depending on platform {{< / highlight >}} To stop the server, use: {{< highlight bash >}} -sudo systemctl stop redis-server +sudo systemctl stop # redis or redis-server depending on platform {{< / highlight >}} ## Connect to Redis