@@ -16,7 +16,7 @@ TiDB 是一个兼容 MySQL 的数据库。[MySQL Workbench](https://www.mysql.co
16
16
17
17
> ** 注意**
18
18
>
19
- > 本文档适用于 TiDB Serverless、TiDB Dedicated 和本地部署的 TiDB。
19
+ > 本文档适用于 TiDB Cloud Serverless、TiDB Cloud Dedicated 和本地部署的 TiDB。
20
20
21
21
## 前置需求
22
22
@@ -27,15 +27,15 @@ TiDB 是一个兼容 MySQL 的数据库。[MySQL Workbench](https://www.mysql.co
27
27
28
28
** 如果你还没有 TiDB 集群,可以按如下方式创建一个:**
29
29
30
- - (推荐方式)参考[ 创建 TiDB Serverless 集群] ( /develop/dev-guide-build-cluster-in-cloud.md ) ,创建一个 TiDB Cloud 集群。
30
+ - (推荐方式)参考[ 创建 TiDB Cloud Serverless 集群] ( /develop/dev-guide-build-cluster-in-cloud.md ) ,创建一个 TiDB Cloud 集群。
31
31
- 参考[ 部署本地测试 TiDB 集群] ( /quick-start-with-tidb.md#部署本地测试集群 ) 或[ 部署正式 TiDB 集群] ( /production-deployment-using-tiup.md ) ,创建一个本地集群。
32
32
33
33
## 连接到 TiDB
34
34
35
35
根据你选择的 TiDB 部署方式连接到 TiDB 集群。
36
36
37
37
<SimpleTab >
38
- <div label =" TiDB Serverless " >
38
+ <div label =" TiDB Cloud Serverless " >
39
39
40
40
1 . 在 TiDB Cloud 的 [ ** Clusters** ] ( https://tidbcloud.com/console/clusters ) 页面中,点击你目标集群的名字,进入集群的 ** Overview** 页面。
41
41
@@ -64,20 +64,20 @@ TiDB 是一个兼容 MySQL 的数据库。[MySQL Workbench](https://www.mysql.co
64
64
- ** Hostname** :输入从 TiDB Cloud 连接对话框中的得到的 ` HOST ` 参数。
65
65
- ** Port** :输入从 TiDB Cloud 连接对话框中的得到的 ` PORT ` 参数。
66
66
- ** Username** :输入从 TiDB Cloud 连接对话框中的得到的 ` USERNAME ` 参数。
67
- - ** Password** :点击 ** Store in Keychain ...** 或 ** Store in Vault** ,输入 TiDB Serverless 集群的密码,然后点击 ** OK** 保存密码。
67
+ - ** Password** :点击 ** Store in Keychain ...** 或 ** Store in Vault** ,输入 TiDB Cloud Serverless 集群的密码,然后点击 ** OK** 保存密码。
68
68
69
- ![ MySQL Workbench: store the password of TiDB Serverless in keychain] ( /media/develop/mysql-workbench-store-password-in-keychain.png )
69
+ ![ MySQL Workbench: store the password of TiDB Cloud Serverless in keychain] ( /media/develop/mysql-workbench-store-password-in-keychain.png )
70
70
71
71
下图显示了连接参数的示例:
72
72
73
- ![ MySQL Workbench: configure connection settings for TiDB Serverless] ( /media/develop/mysql-workbench-connection-config-serverless-parameters.png )
73
+ ![ MySQL Workbench: configure connection settings for TiDB Cloud Serverless] ( /media/develop/mysql-workbench-connection-config-serverless-parameters.png )
74
74
75
- 7 . 点击 ** Test Connection** 以验证与 TiDB Serverless 集群的连接。
75
+ 7 . 点击 ** Test Connection** 以验证与 TiDB Cloud Serverless 集群的连接。
76
76
77
77
8 . 如果连接测试成功,你可以看到 ** Successfully made the MySQL connection** 信息。点击 ** OK** 保存连接配置。
78
78
79
79
</div >
80
- <div label =" TiDB Dedicated " >
80
+ <div label =" TiDB Cloud Dedicated " >
81
81
82
82
1 . 在 TiDB Cloud 的 [ ** Clusters** ] ( https://tidbcloud.com/console/clusters ) 页面中,点击你目标集群的名字,进入集群的 ** Overview** 页面。
83
83
@@ -99,20 +99,20 @@ TiDB 是一个兼容 MySQL 的数据库。[MySQL Workbench](https://www.mysql.co
99
99
- ** Hostname** : 输入从 TiDB Cloud 连接对话框中的得到的 ` HOST ` 参数。
100
100
- ** Port** :输入从 TiDB Cloud 连接对话框中的得到的 ` PORT ` 参数。
101
101
- ** Username** :输入从 TiDB Cloud 连接对话框中的得到的 ` USERNAME ` 参数。
102
- - ** Password** :点击 ** Store in Keychain ...** ,输入 TiDB Dedicated 集群的密码,然后点击 ** OK** 保存密码。
102
+ - ** Password** :点击 ** Store in Keychain ...** ,输入 TiDB Cloud Dedicated 集群的密码,然后点击 ** OK** 保存密码。
103
103
104
- ![ MySQL Workbench: store the password of TiDB Dedicated in keychain] ( /media/develop/mysql-workbench-store-dedicated-password-in-keychain.png )
104
+ ![ MySQL Workbench: store the password of TiDB Cloud Dedicated in keychain] ( /media/develop/mysql-workbench-store-dedicated-password-in-keychain.png )
105
105
106
106
下图显示了连接参数的示例:
107
107
108
- ![ MySQL Workbench: configure connection settings for TiDB Dedicated] ( /media/develop/mysql-workbench-connection-config-dedicated-parameters.png )
108
+ ![ MySQL Workbench: configure connection settings for TiDB Cloud Dedicated] ( /media/develop/mysql-workbench-connection-config-dedicated-parameters.png )
109
109
110
- 6 . 点击 ** Test Connection** 以验证与 TiDB Dedicated 集群的连接。
110
+ 6 . 点击 ** Test Connection** 以验证与 TiDB Cloud Dedicated 集群的连接。
111
111
112
112
7 . 如果连接测试成功,你可以看到 ** Successfully made the MySQL connection** 信息。点击 ** OK** 保存连接配置。
113
113
114
114
</div >
115
- <div label =" TiDB Self-Hosted " >
115
+ <div label =" 本地部署 TiDB " >
116
116
117
117
1 . 启动 MySQL Workbench,并点击 ** MySQL Connections** 标题旁边的 ** +** 。
118
118
@@ -126,11 +126,11 @@ TiDB 是一个兼容 MySQL 的数据库。[MySQL Workbench](https://www.mysql.co
126
126
- ** Username** :输入用于连接到 TiDB 的用户名。
127
127
- ** Password** :点击 ** Store in Keychain ...** ,输入用于连接 TiDB 集群的密码,然后点击 ** OK** 保存密码。
128
128
129
- ![ MySQL Workbench: store the password of TiDB Self-Hosted in keychain] ( /media/develop/mysql-workbench-store-self-hosted-password-in-keychain.png )
129
+ ![ MySQL Workbench: store the password of TiDB Self-Managed in keychain] ( /media/develop/mysql-workbench-store-self-hosted-password-in-keychain.png )
130
130
131
131
下图显示了连接参数的示例:
132
132
133
- ![ MySQL Workbench: configure connection settings for TiDB Self-Hosted ] ( /media/develop/mysql-workbench-connection-config-self-hosted-parameters.png )
133
+ ![ MySQL Workbench: configure connection settings for TiDB Self-Managed ] ( /media/develop/mysql-workbench-connection-config-self-hosted-parameters.png )
134
134
135
135
3 . 点击 ** Test Connection** 以验证与本地部署 TiDB 集群的连接。
136
136
0 commit comments