Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions content/operate/rc/databases/connect.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ A Redis client is a software library or tool that enables applications to intera

The connection wizard provides code snippets to connect to your database with the following programming languages:

- node.js using [node-redis](https://github.com/redis/node-redis/blob/master/README.md)
- node.js using [node-redis]({{< relref "/develop/connect/clients/nodejs" >}})
- .NET using [StackExchange.Redis](https://stackexchange.github.io/StackExchange.Redis/)
- Python using [redis-py](https://github.com/redis/redis-py#redis-py)
- Java using [Jedis](https://github.com/redis/jedis#jedis)
- Python using [redis-py]({{< relref "/develop/connect/clients/python/redis-py" >}})
- Java using [Jedis]({{< relref "/develop/connect/clients/java/jedis" >}})

{{<image filename="images/rc/connection-wizard-clients.png" alt="The connection wizard clients." >}}

Expand Down
6 changes: 3 additions & 3 deletions content/operate/rc/rc-quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,10 @@ A Redis client is a software library or tool that enables applications to intera

The connection wizard provides code snippets to connect to your database with the following programming languages:

- node.js using [node-redis](https://github.com/redis/node-redis/blob/master/README.md)
- node.js using [node-redis]({{< relref "/develop/connect/clients/nodejs" >}})
- .NET using [StackExchange.Redis](https://stackexchange.github.io/StackExchange.Redis/)
- Python using [redis-py](https://github.com/redis/redis-py#redis-py)
- Java using [Jedis](https://github.com/redis/jedis#jedis)
- Python using [redis-py]({{< relref "/develop/connect/clients/python/redis-py" >}})
- Java using [Jedis]({{< relref "/develop/connect/clients/java/jedis" >}})

{{<image filename="images/rc/connection-wizard-clients.png" alt="The connection wizard clients." >}}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,9 @@ Use the copy button to copy the password to the clipboard:

{{<image filename="images/rc/button-database-password-copy.png" alt="Use the Copy button to copy the default user password." >}}

You'll need to use this password whenever you connect to your database using a Redis client. For example,
in the Redis CLI, you use the AUTH command to provide this password:
You'll need to use this password whenever you connect to your database using a Redis client. See [Connect to a database]({{< relref "/operate/rc/databases/connect" >}}) for more info.

```sh
AUTH 4kTtH2ddXfN2sFmXE6sowOLukxiaJhN8n
```

See your Redis client's documentation to learn how to provide your password when connecting.
See your [Redis client's documentation]({{< relref "/develop/connect/clients/" >}}) to learn how to provide your password when connecting.

## Change password

Expand Down
Binary file modified static/images/rc/connection-wizard-clients.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/images/rc/connection-wizard.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading