Skip to content
Merged
Changes from 2 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
18 changes: 18 additions & 0 deletions tiup/tiup-playground.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,24 @@ tiup playground --tag ${tag_name}

For a cluster started in this way, the data files are retained after the cluster is stopped. You can use this tag to start the cluster next time so that you can use the data kept since the cluster was stopped.

## Access TiDB Dashboard and Grafana

When you start a TiDB cluster using TiUP playground, you can access the TiDB Dashboard and Grafana by the following web sites:
Comment thread
hfxsd marked this conversation as resolved.
Outdated

- TiDB Dashboard: `http://127.0.0.1:2379/dashboard`

- Default username: `root`
- Default password: `` (empty, press `Enter` directly)

- Grafana: `http://127.0.0.1:3000`

- Default username: `admin`
- Default password: `admin`

> **Note:**
>
> If you have changed the TiDB `root` user password, use the new password to log in to TiDB Dashboard.
Comment thread
hfxsd marked this conversation as resolved.
Outdated

## Quickly connect to the TiDB cluster started by playground

TiUP provides the `client` component, which is used to automatically find and connect to a local TiDB cluster started by playground. The usage is as follows:
Expand Down
Loading