From 27efd3d5ccb578e191c673bcc16c59183a2170b3 Mon Sep 17 00:00:00 2001 From: Pantelis Roditis Date: Wed, 9 Oct 2024 19:47:54 -0600 Subject: [PATCH] Update Manual.md (#577) Minor edit to mention that REDISCLI_AUTH was added in redis >=5.0.3 --- docs/Manual.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/Manual.md b/docs/Manual.md index 47c58a29..439e9bc4 100644 --- a/docs/Manual.md +++ b/docs/Manual.md @@ -569,6 +569,9 @@ shell: - name: Redis (Local) cmd: "redis-cli" args: +# uncomment for redis <= 5.0.2 +# - "-a" +# - "AuthPassword" - "-h" - "127.0.0.1" - "ping" @@ -576,6 +579,8 @@ shell: # default: false env: # set the `REDISCLI_AUTH` environment variable for redis password + # NOTE: The `REDISCLI_AUTH` was first introduced in redis v5.0.3 so + # older clients may require an alternative way such as `-a AuthPassword` - "REDISCLI_AUTH=abc123" # check the command output, if does not contain the PONG, mark the status down contain : "PONG"