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 br/backup-and-restore-use-cases.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ aliases: ['/zh/tidb/stable/backup-and-restore-use-cases-for-maintain/']

## 部署 TiDB 集群和 br 命令行工具

使用 PITR 功能,需要部署 v6.2.0 或以上版本的 TiDB 集群,并且更新 br 命令行工具到与 TiDB 集群相同的版本,本文假设使用的是 v6.5.5 版本。
使用 PITR 功能,需要部署 v6.2.0 或以上版本的 TiDB 集群,并且更新 br 命令行工具到与 TiDB 集群相同的版本,本文假设使用的是 v6.5.6 版本。

下表介绍了在 TiDB 集群中使用日志备份功能的推荐配置。

Expand All @@ -44,13 +44,13 @@ aliases: ['/zh/tidb/stable/backup-and-restore-use-cases-for-maintain/']
- 安装:

```shell
tiup install br:v6.5.5
tiup install br:v6.5.6
```

- 升级:

```shell
tiup update br:v6.5.5
tiup update br:v6.5.6
```

## 配置备份存储 (Amazon S3)
Expand Down
2 changes: 1 addition & 1 deletion dm/maintain-dm-using-tiup.md
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ tiup dmctl --master-addr master1:8261 operate-source create /tmp/source1.yml

此时可以通过命令行参数 `--native-ssh` 启用系统自带命令行:

- 部署集群:`tiup dm deploy <cluster-name> <version> <topo> --native-ssh`,其中 `<cluster-name>` 为集群名称,`<version>` 为 DM 集群版本(例如 `v6.5.5`),`<topo>` 为拓扑文件路径
- 部署集群:`tiup dm deploy <cluster-name> <version> <topo> --native-ssh`,其中 `<cluster-name>` 为集群名称,`<version>` 为 DM 集群版本(例如 `v6.5.6`),`<topo>` 为拓扑文件路径
- 启动集群:`tiup dm start <cluster-name> --native-ssh`
- 升级集群:`tiup dm upgrade ... --native-ssh`

Expand Down
2 changes: 1 addition & 1 deletion dm/quick-start-create-task.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ docker run --rm --name mysql-3307 -p 3307:3307 -e MYSQL_ALLOW_EMPTY_PASSWORD=tru
{{< copyable "shell-regular" >}}

```bash
wget https://download.pingcap.org/tidb-community-server-v6.5.5-linux-amd64.tar.gz
wget https://download.pingcap.org/tidb-community-server-v6.5.6-linux-amd64.tar.gz
tar -xzvf tidb-latest-linux-amd64.tar.gz
mv tidb-latest-linux-amd64/bin/tidb-server ./
./tidb-server -P 4000 --store mocktikv --log-file "./tidb.log" &
Expand Down
2 changes: 1 addition & 1 deletion pd-control.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ PD Control 是 PD 的命令行工具,用于获取集群状态信息和调整

> **注意:**
>
> 下载链接中的 `{version}` 为 TiDB 的版本号。例如,amd64 架构的 `v6.5.5` 版本的下载链接为 `https://download.pingcap.org/tidb-community-server-v6.5.5-linux-amd64.tar.gz`。
> 下载链接中的 `{version}` 为 TiDB 的版本号。例如,amd64 架构的 `v6.5.6` 版本的下载链接为 `https://download.pingcap.org/tidb-community-server-v6.5.6-linux-amd64.tar.gz`。

### 源码编译

Expand Down
4 changes: 2 additions & 2 deletions production-deployment-using-tiup.md
Original file line number Diff line number Diff line change
Expand Up @@ -340,13 +340,13 @@ alertmanager_servers:
{{< copyable "shell-regular" >}}

```shell
tiup cluster deploy tidb-test v6.5.5 ./topology.yaml --user root [-p] [-i /home/root/.ssh/gcp_rsa]
tiup cluster deploy tidb-test v6.5.6 ./topology.yaml --user root [-p] [-i /home/root/.ssh/gcp_rsa]
```

以上部署示例中:

- `tidb-test` 为部署的集群名称。
- `v6.5.5` 为部署的集群版本,可以通过执行 `tiup list tidb` 来查看 TiUP 支持的最新可用版本。
- `v6.5.6` 为部署的集群版本,可以通过执行 `tiup list tidb` 来查看 TiUP 支持的最新可用版本。
- 初始化配置文件为 `topology.yaml`。
- `--user root` 表示通过 root 用户登录到目标主机完成集群部署,该用户需要有 ssh 到目标机器的权限,并且在目标机器有 sudo 权限。也可以用其他有 ssh 和 sudo 权限的用户完成部署。
- [-i] 及 [-p] 为可选项,如果已经配置免密登录目标机,则不需填写。否则选择其一即可,[-i] 为可登录到目标机的 root 用户(或 --user 指定的其他用户)的私钥,也可使用 [-p] 交互式输入该用户的密码。
Expand Down
10 changes: 5 additions & 5 deletions quick-start-with-tidb.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@ TiDB 是一个分布式系统。最基础的 TiDB 测试集群通常由 2 个 Ti
{{< copyable "shell-regular" >}}

```shell
tiup playground v6.5.5 --db 2 --pd 3 --kv 3
tiup playground v6.5.6 --db 2 --pd 3 --kv 3
```

上述命令会在本地下载并启动某个版本的集群(例如 v6.5.5)。最新版本可以通过执行 `tiup list tidb` 来查看。运行结果将显示集群的访问方式:
上述命令会在本地下载并启动某个版本的集群(例如 v6.5.6)。最新版本可以通过执行 `tiup list tidb` 来查看。运行结果将显示集群的访问方式:

```log
CLUSTER START SUCCESSFULLY, Enjoy it ^-^
Expand Down Expand Up @@ -197,10 +197,10 @@ TiDB 是一个分布式系统。最基础的 TiDB 测试集群通常由 2 个 Ti
{{< copyable "shell-regular" >}}

```shell
tiup playground v6.5.5 --db 2 --pd 3 --kv 3
tiup playground v6.5.6 --db 2 --pd 3 --kv 3
```

上述命令会在本地下载并启动某个版本的集群(例如 v6.5.5)。最新版本可以通过执行 `tiup list tidb` 来查看。运行结果将显示集群的访问方式:
上述命令会在本地下载并启动某个版本的集群(例如 v6.5.6)。最新版本可以通过执行 `tiup list tidb` 来查看。运行结果将显示集群的访问方式:

```log
CLUSTER START SUCCESSFULLY, Enjoy it ^-^
Expand Down Expand Up @@ -431,7 +431,7 @@ TiDB 是一个分布式系统。最基础的 TiDB 测试集群通常由 2 个 Ti
```

- 参数 `<cluster-name>` 表示设置集群名称
- 参数 `<version>` 表示设置集群版本,例如 `v6.5.5`。可以通过 `tiup list tidb` 命令来查看当前支持部署的 TiDB 版本
- 参数 `<version>` 表示设置集群版本,例如 `v6.5.6`。可以通过 `tiup list tidb` 命令来查看当前支持部署的 TiDB 版本
- 参数 `-p` 表示在连接目标机器时使用密码登录

> **注意:**
Expand Down
2 changes: 1 addition & 1 deletion scale-tidb-using-tiup.md
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ Starting /root/.tiup/components/cluster/v1.11.3/cluster display <cluster-name>

TiDB Cluster: <cluster-name>

TiDB Version: v6.5.5
TiDB Version: v6.5.6

ID Role Host Ports Status Data Dir Deploy Dir

Expand Down
4 changes: 2 additions & 2 deletions ticdc/deploy-ticdc.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ tiup cluster upgrade <cluster-name> <version> --transfer-timeout 600

> **注意:**
>
> 命令中的 `<cluster-name>` 需要替换为集群名字,`<version>` 需要替换为目标版本号,例如 `v6.5.5`。
> 命令中的 `<cluster-name>` 需要替换为集群名字,`<version>` 需要替换为目标版本号,例如 `v6.5.6`。

### 升级的注意事项

Expand Down Expand Up @@ -152,7 +152,7 @@ tiup cluster upgrade <cluster-name> <version> --transfer-timeout 600

## 使用 TiCDC 命令行工具来查看集群状态

执行以下命令来查看 TiCDC 集群运行状态,注意需要将 `v<CLUSTER_VERSION>` 替换为 TiCDC 集群版本,例如 `v6.5.5`:
执行以下命令来查看 TiCDC 集群运行状态,注意需要将 `v<CLUSTER_VERSION>` 替换为 TiCDC 集群版本,例如 `v6.5.6`:

```shell
tiup ctl:v<CLUSTER_VERSION> cdc capture list --server=http://10.0.10.25:8300
Expand Down
2 changes: 1 addition & 1 deletion ticdc/ticdc-changefeed-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ Changefeed 是 TiCDC 中的单个同步任务。Changefeed 将一个 TiDB 集群

通过 TiCDC 提供的命令行工具 `cdc cli`,你可以管理 TiCDC 集群和同步任务,具体可参考[管理 TiCDC Changefeed](/ticdc/ticdc-manage-changefeed.md)。你也可以通过 HTTP 接口,即 TiCDC OpenAPI 来管理 TiCDC 集群和同步任务,详见 [TiCDC OpenAPI](/ticdc/ticdc-open-api.md)。

如果你使用的 TiCDC 是用 TiUP 部署的,可以通过 `tiup ctl:v<CLUSTER_VERSION> cdc` 来使用 TiCDC 命令行工具,注意需要将 `<version>` 替换为 TiCDC 集群版本。你也可以通过直接执行 `cdc cli` 直接使用命令行工具。
如果你使用的 TiCDC 是用 TiUP 部署的,可以通过 `tiup ctl:v<CLUSTER_VERSION> cdc` 来使用 TiCDC 命令行工具,注意需要将 `v<CLUSTER_VERSION>` 替换为 TiCDC 集群版本,例如 `v6.5.6`。你也可以通过直接执行 `cdc cli` 直接使用命令行工具。
2 changes: 1 addition & 1 deletion tidb-binlog/get-started-with-tidb-binlog.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ sudo yum install -y mariadb-server
{{< copyable "shell-regular" >}}

```bash
curl -LO https://download.pingcap.org/tidb-community-server-v6.5.5-linux-amd64.tar.gz | tar xzf - &&
curl -LO https://download.pingcap.org/tidb-community-server-v6.5.6-linux-amd64.tar.gz | tar xzf - &&
cd tidb-latest-linux-amd64
```

Expand Down
2 changes: 1 addition & 1 deletion tiflash/create-tiflash-replicas.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ SELECT TABLE_NAME FROM information_schema.tables where TABLE_SCHEMA = "<db_name>
tiup ctl:v<CLUSTER_VERSION> pd -u http://<PD_ADDRESS>:2379 store limit all engine tiflash 60 add-peer
```

> 上述命令中,需要将 `v<CLUSTER_VERSION>` 替换为该集群版本,例如 `v6.5.5`,`<PD_ADDRESS>:2379` 替换为任一 PD 节点的地址。替换后样例为:
> 上述命令中,需要将 `v<CLUSTER_VERSION>` 替换为该集群版本,例如 `v6.5.6`,`<PD_ADDRESS>:2379` 替换为任一 PD 节点的地址。替换后样例为:
>
> ```shell
> tiup ctl:v6.1.1 pd -u http://192.168.1.4:2379 store limit all engine tiflash 60 add-peer
Expand Down
30 changes: 15 additions & 15 deletions tiup/tiup-cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Flags:
tiup cluster deploy <cluster-name> <version> <topology.yaml> [flags]
```

该命令需要提供集群的名字、集群使用的 TiDB 版本(例如 `v6.5.5`),以及一个集群的拓扑文件。
该命令需要提供集群的名字、集群使用的 TiDB 版本(例如 `v6.5.6`),以及一个集群的拓扑文件。

拓扑文件的编写可参考[示例](https://github.com/pingcap/tiup/blob/master/embed/examples/cluster/topology.example.yaml)。以一个最简单的拓扑为例,将下列文件保存为 `/tmp/topology.yaml`:

Expand Down Expand Up @@ -117,20 +117,20 @@ tidb_servers:
...
```

假如我们想要使用 TiDB 的 v6.5.5 版本,集群名字为 `prod-cluster`,则执行以下命令:
假如我们想要使用 TiDB 的 v6.5.6 版本,集群名字为 `prod-cluster`,则执行以下命令:

{{< copyable "shell-regular" >}}

```shell
tiup cluster deploy -p prod-cluster v6.5.5 /tmp/topology.yaml
tiup cluster deploy -p prod-cluster v6.5.6 /tmp/topology.yaml
```

执行过程中会再次确认拓扑结构并提示输入目标机器上的 root 密码(-p 表示使用密码):

```bash
Please confirm your topology:
TiDB Cluster: prod-cluster
TiDB Version: v6.5.5
TiDB Version: v6.5.6
Type Host Ports OS/Arch Directories
---- ---- ----- ------- -----------
pd 172.16.5.134 2379/2380 linux/x86_64 deploy/pd-2379,data/pd-2379
Expand Down Expand Up @@ -173,7 +173,7 @@ tiup cluster list
Starting /root/.tiup/components/cluster/v1.11.3/cluster list
Name User Version Path PrivateKey
---- ---- ------- ---- ----------
prod-cluster tidb v6.5.5 /root/.tiup/storage/cluster/clusters/prod-cluster /root/.tiup/storage/cluster/clusters/prod-cluster/ssh/id_rsa
prod-cluster tidb v6.5.6 /root/.tiup/storage/cluster/clusters/prod-cluster /root/.tiup/storage/cluster/clusters/prod-cluster/ssh/id_rsa
```

## 启动集群
Expand Down Expand Up @@ -201,7 +201,7 @@ tiup cluster display prod-cluster
```
Starting /root/.tiup/components/cluster/v1.11.3/cluster display prod-cluster
TiDB Cluster: prod-cluster
TiDB Version: v6.5.5
TiDB Version: v6.5.6
ID Role Host Ports OS/Arch Status Data Dir Deploy Dir
-- ---- ---- ----- ------- ------ -------- ----------
172.16.5.134:3000 grafana 172.16.5.134 3000 linux/x86_64 Up - deploy/grafana-3000
Expand Down Expand Up @@ -269,7 +269,7 @@ tiup cluster display prod-cluster
```
Starting /root/.tiup/components/cluster/v1.11.3/cluster display prod-cluster
TiDB Cluster: prod-cluster
TiDB Version: v6.5.5
TiDB Version: v6.5.6
ID Role Host Ports OS/Arch Status Data Dir Deploy Dir
-- ---- ---- ----- ------- ------ -------- ----------
172.16.5.134:3000 grafana 172.16.5.134 3000 linux/x86_64 Up - deploy/grafana-3000
Expand Down Expand Up @@ -369,12 +369,12 @@ Global Flags:
-y, --yes 跳过所有的确认步骤
```

例如,把集群升级到 v6.5.5 的命令为:
例如,把集群升级到 v6.5.6 的命令为:

{{< copyable "shell-regular" >}}

```bash
tiup cluster upgrade tidb-test v6.5.5
tiup cluster upgrade tidb-test v6.5.6
```

## 更新配置
Expand Down Expand Up @@ -554,11 +554,11 @@ tiup cluster audit
Starting component `cluster`: /home/tidb/.tiup/components/cluster/v1.11.3/cluster audit
ID Time Command
-- ---- -------
4BLhr0 2023-09-21T13:25:09+08:00 /home/tidb/.tiup/components/cluster/v1.11.3/cluster deploy test v6.5.5 /tmp/topology.yaml
4BKWjF 2023-09-21T23:36:57+08:00 /home/tidb/.tiup/components/cluster/v1.11.3/cluster deploy test v6.5.5 /tmp/topology.yaml
4BKVwH 2023-09-21T23:02:08+08:00 /home/tidb/.tiup/components/cluster/v1.11.3/cluster deploy test v6.5.5 /tmp/topology.yaml
4BKKH1 2023-09-21T16:39:04+08:00 /home/tidb/.tiup/components/cluster/v1.11.3/cluster destroy test
4BKKDx 2023-09-21T16:36:57+08:00 /home/tidb/.tiup/components/cluster/v1.11.3/cluster deploy test v6.5.5 /tmp/topology.yaml
4BLhr0 2023-12-07T13:25:09+08:00 /home/tidb/.tiup/components/cluster/v1.11.3/cluster deploy test v6.5.6 /tmp/topology.yaml
4BKWjF 2023-12-07T23:36:57+08:00 /home/tidb/.tiup/components/cluster/v1.11.3/cluster deploy test v6.5.6 /tmp/topology.yaml
4BKVwH 2023-12-07T23:02:08+08:00 /home/tidb/.tiup/components/cluster/v1.11.3/cluster deploy test v6.5.6 /tmp/topology.yaml
4BKKH1 2023-12-07T16:39:04+08:00 /home/tidb/.tiup/components/cluster/v1.11.3/cluster destroy test
4BKKDx 2023-12-07T16:36:57+08:00 /home/tidb/.tiup/components/cluster/v1.11.3/cluster deploy test v6.5.6 /tmp/topology.yaml
```

第一列为 audit-id,如果想看某个命令的执行日志,则传入这个 audit-id:
Expand Down Expand Up @@ -672,7 +672,7 @@ tiup cluster check <cluster-name> --cluster

此时可以通过命令行参数 `--ssh=system` 启用系统自带命令行:

- 部署集群:`tiup cluster deploy <cluster-name> <version> <topo> --ssh=system`,其中 `<cluster-name>` 为集群名称,`<version>` 为 TiDB 集群版本(例如 `v6.5.5`),`<topo>` 为拓扑文件路径
- 部署集群:`tiup cluster deploy <cluster-name> <version> <topo> --ssh=system`,其中 `<cluster-name>` 为集群名称,`<version>` 为 TiDB 集群版本(例如 `v6.5.6`),`<topo>` 为拓扑文件路径
- 启动集群:`tiup cluster start <cluster-name> --ssh=system`
- 升级集群:`tiup cluster upgrade ... --ssh=system`

Expand Down
2 changes: 1 addition & 1 deletion tiup/tiup-component-cluster-deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ tiup cluster deploy <cluster-name> <version> <topology.yaml> [flags]
```

- `<cluster-name>` 表示新集群的名字,不能和现有集群同名
- `<version>` 为要部署的 TiDB 集群版本号,如 `v6.5.5`
- `<version>` 为要部署的 TiDB 集群版本号,如 `v6.5.6`
- `<topology.yaml>` 为事先编写好的[拓扑文件](/tiup/tiup-cluster-topology-reference.md)

## 选项
Expand Down
2 changes: 1 addition & 1 deletion tiup/tiup-component-cluster-patch.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ tiup cluster patch <cluster-name> <package-path> [flags]
1. 确定以下变量的值:

- `${component}`:需要替换的组件名(例如 `tidb`、`tikv`、`pd`)。
- `${version}`:组件的版本(例如 `v7.0.0`、`v6.5.5`)。
- `${version}`:组件的版本(例如 `v6.5.6`)。
- `${os}`:操作系统 (`linux`)。
- `${arch}`:组件运行的平台 (`amd64`、`arm64`)。
2. 下载当前的组件包:
Expand Down
2 changes: 1 addition & 1 deletion tiup/tiup-component-cluster-upgrade.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ tiup cluster upgrade <cluster-name> <version> [flags]
```

- `<cluster-name>` 为要操作的集群名字,如果忘记集群名字可通过[集群列表](/tiup/tiup-component-cluster-list.md)查看。
- `<version>` 为要升级到的目标版本,例如 `v6.5.5`。目前仅允许升级到比当前集群更高的版本,不允许升级到比当前集群更低的版本,即不允许降级。同时也不允许升级成 nightly 版本
- `<version>` 为要升级到的目标版本,例如 `v6.5.6`。目前仅允许升级到比当前集群更高的版本,不允许升级到比当前集群更低的版本,即不允许降级。同时也不允许升级成 nightly 版本

## 选项

Expand Down
2 changes: 1 addition & 1 deletion tiup/tiup-component-dm-upgrade.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ tiup dm upgrade <cluster-name> <version> [flags]
```

- `<cluster-name>` 为要操作的集群名字,如果忘记集群名字可查看[集群列表](/tiup/tiup-component-dm-list.md)。
- `<version>` 为要升级到的目标版本,例如 `v6.5.5`。目前仅允许升级到比当前集群更高的版本,不允许升级到比当前集群更低的版本,即不允许降级。同时也不允许升级成 nightly 版本
- `<version>` 为要升级到的目标版本,例如 `v6.5.6`。目前仅允许升级到比当前集群更高的版本,不允许升级到比当前集群更低的版本,即不允许降级。同时也不允许升级成 nightly 版本

## 选项

Expand Down
12 changes: 6 additions & 6 deletions tiup/tiup-component-management.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,12 @@ tiup install tidb
tiup install tidb:nightly
```

示例三:使用 TiUP 安装 v6.5.5 版本的 TiKV
示例三:使用 TiUP 安装 v6.5.6 版本的 TiKV

{{< copyable "shell-regular" >}}

```shell
tiup install tikv:v6.5.5
tiup install tikv:v6.5.6
```

## 升级组件
Expand Down Expand Up @@ -128,12 +128,12 @@ Flags:

如果想要多次启动同一个组件并复用之前的工作目录,就可以在启动时用 `--tag` 指定相同的名字。指定 tag 后,在实例终止时就*不会自动删除*工作目录,方便下次启动时复用。

示例一:运行 v6.5.5 版本的 TiDB
示例一:运行 v6.5.6 版本的 TiDB

{{< copyable "shell-regular" >}}

```shell
tiup tidb:v6.5.5
tiup tidb:v6.5.6
```

示例二:指定 tag 运行 TiKV
Expand Down Expand Up @@ -219,12 +219,12 @@ component 为要卸载的组件名称,version 为要卸载的版本,这两
- 若省略版本,加 `--all` 表示卸载该组件所有版本
- 若版本和组件都省略,则加 `--all` 表示卸载所有组件及其所有版本

示例一:卸载 v6.5.5 版本的 TiDB
示例一:卸载 v6.5.6 版本的 TiDB

{{< copyable "shell-regular" >}}

```shell
tiup uninstall tidb:v6.5.5
tiup uninstall tidb:v6.5.6
```

示例二:卸载所有版本的 TiKV
Expand Down
6 changes: 3 additions & 3 deletions tiup/tiup-mirror.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ tiup mirror clone <target-dir> [global-version] [flags]

如果只想克隆某个组件的某一个版本而不是所有版本,则使用 `--<component>=<version>` 来限定,例如:

- 只想克隆 TiDB 的 v6.5.5 版本,则执行 `tiup mirror clone <target-dir> --tidb v6.5.5`
- 只想克隆 TiDB 的 v6.5.5 版本,以及 TiKV 的所有版本,则执行 `tiup mirror clone <target-dir> --tidb v6.5.5 --tikv all`
- 克隆一个集群的所有组件的 v6.5.5 版本,则执行 `tiup mirror clone <target-dir> v6.5.5`
- 只想克隆 TiDB 的 v6.5.6 版本,则执行 `tiup mirror clone <target-dir> --tidb v6.5.6`
- 只想克隆 TiDB 的 v6.5.6 版本,以及 TiKV 的所有版本,则执行 `tiup mirror clone <target-dir> --tidb v6.5.6 --tikv all`
- 克隆一个集群的所有组件的 v6.5.6 版本,则执行 `tiup mirror clone <target-dir> v6.5.6`

克隆完成后,签名密钥会自动设置。

Expand Down
Loading