Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhance TiDB login descriptions - EN #6427

Merged
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
2 changes: 1 addition & 1 deletion dashboard/dashboard-access.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ You can use TiDB Dashboard in the following common desktop browsers of a relativ

## Sign in

For the first-time access, TiDB Dashboard displays the user sign in interface, as shown in the image below. You can sign in using the TiDB `root` account.
For the first-time access, TiDB Dashboard displays the user sign in interface, as shown in the image below. You can sign in using the TiDB `root` account. By default, the `root` password is empty.

![Login interface](/media/dashboard/dashboard-access-login.png)

Expand Down
4 changes: 3 additions & 1 deletion post-installation-check.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,11 @@ Log in to the database by running the following command:
{{< copyable "shell-regular" >}}

```shell
mysql -u root -h 10.0.1.4 -P 4000
mysql -u root -h ${tidb_server_host_IP_address} -P 4000
```

`${tidb_server_host_IP_address}` is one of the IP addresses set for `tidb_servers` when you [initialize the cluster topology file](/production-deployment-using-tiup.md#step-3-initialize-cluster-topology-file), such as `10.0.1.7`.

The following information indicates successful login:

```sql
Expand Down