Skip to content

Commit

Permalink
Add Redis docs (#10693)
Browse files Browse the repository at this point in the history
Add Redis documentation on how to setup Redis.

Co-authored-by: Paul Gottschling <[email protected]>
Co-authored-by: Marek Smoliński <[email protected]>
  • Loading branch information
3 people authored Mar 11, 2022
1 parent 628564c commit 86ad572
Show file tree
Hide file tree
Showing 9 changed files with 414 additions and 1 deletion.
4 changes: 4 additions & 0 deletions docs/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -450,6 +450,10 @@
"title": "Self-Hosted CockroachDB",
"slug": "/database-access/guides/cockroachdb-self-hosted/"
},
{
"title": "Self-Hosted Redis",
"slug": "/database-access/guides/redis/"
},
{
"title": "SQL Server (Preview)",
"slug": "/database-access/guides/sql-server-ad/"
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 31 additions & 0 deletions docs/pages/database-access/guides/gui-clients.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -192,3 +192,34 @@ keep the Password field empty:
![DataGrip connection options](../../../img/database-access/guides/sqlserver/[email protected])

Click OK to connect.

## Redis Insight

<Admonition type="note">
Teleport's Redis Insight integration only supports Redis standalone instances.
</Admonition>

After opening Redis Insight click `ADD REDIS DATABASE`.

![Redis Insight Startup Screen](../../../img/database-access/guides/redis/redisinsight-startup.png)

Log in to your Redis instance with a Redis user first by using:

`tsh db login --db-user=alice redis-db-name`.

Click `Add Database Manually`. Use `127.0.0.1` as the `Host` and port printed by `tsh proxy db` as described [here](#get-connection-information).

Provide your Redis username as `Username` and password as `Password`.

![Redis Insight Configuration](../../../img/database-access/guides/redis/redisinsight-add-config.png)

Next, check the `Use TLS` and `Verify TLS Certificates` boxes and copy the CA certificate returned by `tsh proxy db`.
Copy the private key and certificate to corresponding fields.

Click `Add Redis Database`.

![Redis Insight TLS Configuration](../../../img/database-access/guides/redis/redisinsight-tls-config.png)

Congratulations! You have just connected to your Redis instance.

![Redis Insight Connected](../../../img/database-access/guides/redis/redisinsight-connected.png)
Loading

0 comments on commit 86ad572

Please sign in to comment.