Add an explanation for URI with -u in redis-cli#2604
Merged
zuiderkwast merged 2 commits intoredis:masterfrom Nov 22, 2023
Merged
Add an explanation for URI with -u in redis-cli#2604zuiderkwast merged 2 commits intoredis:masterfrom
zuiderkwast merged 2 commits intoredis:masterfrom
Conversation
It's good for users to know that they need to specify "default" as the username when authenticating without a username. Other details of the URI format are described too, like scheme and dbnum.
👷 Deploy request for redis-doc pending review.Visit the deploys page to approve it
|
Contributor
Author
|
Hi @zuiderkwast |
zuiderkwast
approved these changes
Nov 22, 2023
Contributor
zuiderkwast
left a comment
There was a problem hiding this comment.
Thanks @lowgiant. Very nice!
Contributor
|
It is already visible on https://redis.io/docs/connect/cli/ and it looks good. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
It's good for users to know that they need to specify "default" as the username when authenticating without a username. Other details of the URI format are described too, like scheme and dbnum.
It used to be possible to connect to Redis using an URL with an empty username, like redis-cli -u redis://:PASSWORD@localhost:6379/0. This was broken in 6.2 (redis/redis#8048), and there was a discussion about it redis/redis#9186.
Now, users need to specify "default" as the username and it's better to document it.
Refer to redis/redis#12746 and #2523 for more details.