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
4 changes: 2 additions & 2 deletions dev/how-to/deploy/data-migration-with-ansible.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ Make sure you have logged in to the Control Machine using the `tidb` user accoun
2. Run the following command to download DM-Ansible.

```bash
$ wget http://download.pingcap.org/dm-ansible-{version}.tar.gz
$ wget https://download.pingcap.org/dm-ansible-{version}.tar.gz
```

`{version}` is the DM version that you expect to download, like `v1.0.1` and `v1.0.2`.
Expand Down Expand Up @@ -465,7 +465,7 @@ dm_master ansible_host=172.16.10.71 dm_master_port=18261

```
$ cd /home/tidb
$ wget http://download.pingcap.org/dm-ansible-{version}.tar.gz
$ wget https://download.pingcap.org/dm-ansible-{version}.tar.gz
$ tar -xzvf dm-ansible-{version}.tar.gz
$ mv dm-ansible-{version} dm-ansible
```
Expand Down
4 changes: 2 additions & 2 deletions dev/how-to/deploy/from-tarball/production-environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ See the following table for the default ports for the optional TiDB components:

```
# Download the package.
$ wget http://download.pingcap.org/tidb-latest-linux-amd64.tar.gz
$ wget http://download.pingcap.org/tidb-latest-linux-amd64.sha256
$ wget https://download.pingcap.org/tidb-latest-linux-amd64.tar.gz
$ wget https://download.pingcap.org/tidb-latest-linux-amd64.sha256

# Check the file integrity. If the result is OK, the file is correct.
$ sha256sum -c tidb-latest-linux-amd64.sha256
Expand Down
4 changes: 2 additions & 2 deletions dev/how-to/deploy/from-tarball/testing-environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ See the following table for the default ports for the optional TiDB components:

```
# Download the package.
$ wget http://download.pingcap.org/tidb-latest-linux-amd64.tar.gz
$ wget http://download.pingcap.org/tidb-latest-linux-amd64.sha256
$ wget https://download.pingcap.org/tidb-latest-linux-amd64.tar.gz
$ wget https://download.pingcap.org/tidb-latest-linux-amd64.sha256

# Check the file integrity. If the result is OK, the file is correct.
$ sha256sum -c tidb-latest-linux-amd64.sha256
Expand Down
4 changes: 2 additions & 2 deletions dev/how-to/get-started/data-migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ We're going to deploy 3 instances of MySQL Server, and 1 instance each of pd-ser
```bash
sudo yum install -y http://repo.mysql.com/yum/mysql-5.7-community/el/7/x86_64/mysql57-community-release-el7-10.noarch.rpm
sudo yum install -y mysql-community-server
curl http://download.pingcap.org/tidb-v3.0-linux-amd64.tar.gz | tar xzf -
curl http://download.pingcap.org/dm-v1.0.2-linux-amd64.tar.gz | tar xzf -
curl https://download.pingcap.org/tidb-v3.0-linux-amd64.tar.gz | tar xzf -
curl https://download.pingcap.org/dm-v1.0.2-linux-amd64.tar.gz | tar xzf -
curl -L https://github.com/pingcap/docs/raw/master/dev/how-to/get-started/dm-cnf/dm-cnf.tgz | tar xvzf -
```

Expand Down
4 changes: 2 additions & 2 deletions dev/how-to/get-started/deploy-tidb-from-binary.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ See the [production deployment](/dev/how-to/deploy/from-tarball/production-envir

```
# Download the package.
$ wget http://download.pingcap.org/tidb-latest-linux-amd64.tar.gz
$ wget http://download.pingcap.org/tidb-latest-linux-amd64.sha256
$ wget https://download.pingcap.org/tidb-latest-linux-amd64.tar.gz
$ wget https://download.pingcap.org/tidb-latest-linux-amd64.sha256

# Check the file integrity. If the result is OK, the file is correct.
$ sha256sum -c tidb-latest-linux-amd64.sha256
Expand Down
4 changes: 2 additions & 2 deletions dev/how-to/get-started/tidb-binlog.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,14 @@ sudo yum install -y mariadb-server
Even if you've already started a TiDB cluster, it will be easier to follow along with this tutorial where we will set up a new, simple cluster. We will install from a tarball, using a simplified form of the [Local Deployment](/dev/how-to/get-started/deploy-tidb-from-binary.md) guide. You may also wish to refer to [Testing Deployment from Binary Tarball](/dev/how-to/deploy/from-tarball/testing-environment.md) for best practices of establishing a real testing deployment, but that goes beyond the scope of this tutorial.

```bash
curl -L http://download.pingcap.org/tidb-latest-linux-amd64.tar.gz | tar xzf -
curl -L https://download.pingcap.org/tidb-latest-linux-amd64.tar.gz | tar xzf -
cd tidb-latest-linux-amd64
```

Expected output:

```
[kolbe@localhost ~]$ curl -LO http://download.pingcap.org/tidb-latest-linux-amd64.tar.gz | tar xzf -
[kolbe@localhost ~]$ curl -LO https://download.pingcap.org/tidb-latest-linux-amd64.tar.gz | tar xzf -
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 368M 100 368M 0 0 8394k 0 0:00:44 0:00:44 --:--:-- 11.1M
Expand Down
2 changes: 1 addition & 1 deletion dev/how-to/get-started/tidb-lightning.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Before the data import, you need to deploy a TiDB cluster (later than v2.0.9). I

Download the TiDB Lightning installation package from the following link:

- **v3.0.4**: [tidb-toolkit-v3.0.4-linux-amd64.tar.gz](http://download.pingcap.org/tidb-toolkit-v3.0.0-linux-amd64.tar.gz)
- **v3.0.4**: [tidb-toolkit-v3.0.4-linux-amd64.tar.gz](https://download.pingcap.org/tidb-toolkit-v3.0.0-linux-amd64.tar.gz)

> **Note:**
>
Expand Down
4 changes: 2 additions & 2 deletions dev/how-to/maintain/backup-and-restore/mydumper-loader.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ Use the following tools for data backup and restoration:
{{< copyable "shell-regular" >}}

```bash
wget http://download.pingcap.org/tidb-enterprise-tools-latest-linux-amd64.tar.gz && \
wget http://download.pingcap.org/tidb-enterprise-tools-latest-linux-amd64.sha256
wget https://download.pingcap.org/tidb-enterprise-tools-latest-linux-amd64.tar.gz && \
wget https://download.pingcap.org/tidb-enterprise-tools-latest-linux-amd64.sha256
```

2. Check the file integrity. If the result is fine, the file is correct.
Expand Down
2 changes: 1 addition & 1 deletion dev/reference/tidb-binlog/reparo.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ category: reference

Reparo is a TiDB Binlog tool, used to recover the incremental data. To back up the incremental data, you can use Drainer of TiDB Binlog to output the binlog data in the protobuf format to files. To restore the incremental data, you can use Reparo to parse the binlog data in the files and apply the binlog in TiDB/MySQL.

Download Reparo via [tidb-binlog-cluster-latest-linux-amd64.tar.gz](http://download.pingcap.org/tidb-binlog-cluster-latest-linux-amd64.tar.gz)
Download Reparo via [tidb-binlog-cluster-latest-linux-amd64.tar.gz](https://download.pingcap.org/tidb-binlog-cluster-latest-linux-amd64.tar.gz)

## Reparo usage

Expand Down
8 changes: 4 additions & 4 deletions dev/reference/tidb-binlog/tidb-binlog-kafka.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ The corresponding relationship between the `tidb-ansible` branch and the TiDB ve

```bash
# Download the tool package.
wget http://download.pingcap.org/tidb-binlog-kafka-linux-amd64.tar.gz
wget http://download.pingcap.org/tidb-binlog-kafka-linux-amd64.sha256
wget https://download.pingcap.org/tidb-binlog-kafka-linux-amd64.tar.gz
wget https://download.pingcap.org/tidb-binlog-kafka-linux-amd64.sha256

# Check the file integrity. If the result is OK, the file is correct.
sha256sum -c tidb-binlog-kafka-linux-amd64.sha256
Expand Down Expand Up @@ -382,8 +382,8 @@ CentOS 7+

```bash
# Download PbReader package
wget http://download.pingcap.org/pb_reader-latest-linux-amd64.tar.gz
wget http://download.pingcap.org/pb_reader-latest-linux-amd64.sha256
wget https://download.pingcap.org/pb_reader-latest-linux-amd64.tar.gz
wget https://download.pingcap.org/pb_reader-latest-linux-amd64.sha256

# Check the file integrity. If the result is OK, the file is correct.
sha256sum -c pb_reader-latest-linux-amd64.sha256
Expand Down
16 changes: 8 additions & 8 deletions dev/reference/tools/download.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,44 +16,44 @@ In addition, the Kafka version of TiDB Binlog is also provided.

| Package name | OS | Architecture | SHA256 checksum |
|:---|:---|:---|:---|
| `http://download.pingcap.org/tidb-{version}-linux-amd64.tar.gz` (TiDB Binlog) | Linux | amd64 | `http://download.pingcap.org/tidb-{version}-linux-amd64.sha256` |
| `http://download.pingcap.org/tidb-binlog-kafka-linux-amd64.tar.gz` (the Kafka version of TiDB Binlog) | Linux | amd64 | `http://download.pingcap.org/tidb-binlog-kafka-linux-amd64.sha256` |
| `https://download.pingcap.org/tidb-{version}-linux-amd64.tar.gz` (TiDB Binlog) | Linux | amd64 | `https://download.pingcap.org/tidb-{version}-linux-amd64.sha256` |
| `https://download.pingcap.org/tidb-binlog-kafka-linux-amd64.tar.gz` (the Kafka version of TiDB Binlog) | Linux | amd64 | `https://download.pingcap.org/tidb-binlog-kafka-linux-amd64.sha256` |

> **Note:**
>
> `{version}` in the above download link indicates the version number of TiDB. For example, the download link for `v3.0.5` is `http://download.pingcap.org/tidb-v3.0.5-linux-amd64.tar.gz`. You can also download the latest unpublished version by replacing `{version}` with `latest`.
> `{version}` in the above download link indicates the version number of TiDB. For example, the download link for `v3.0.5` is `https://download.pingcap.org/tidb-v3.0.5-linux-amd64.tar.gz`. You can also download the latest unpublished version by replacing `{version}` with `latest`.

## TiDB Lightning

Download [TiDB Lightning](/dev/reference/tools/tidb-lightning/overview.md) by using the download link in the following table:

| Package name | OS | Architecture | SHA256 checksum |
|:---|:---|:---|:---|
| `http://download.pingcap.org/tidb-toolkit-{version}-linux-amd64.tar.gz` | Linux | amd64 | `http://download.pingcap.org/tidb-toolkit-{version}-linux-amd64.sha256` |
| `https://download.pingcap.org/tidb-toolkit-{version}-linux-amd64.tar.gz` | Linux | amd64 | `https://download.pingcap.org/tidb-toolkit-{version}-linux-amd64.sha256` |

> **Note:**
>
> `{version}` in the above download link indicates the version number of TiDB Lightning. For example, the download link for `v3.0.5` is `http://download.pingcap.org/tidb-toolkit-v3.0.5-linux-amd64.tar.gz`. You can also download the latest unpublished version by replacing `{version}` with `latest`.
> `{version}` in the above download link indicates the version number of TiDB Lightning. For example, the download link for `v3.0.5` is `https://download.pingcap.org/tidb-toolkit-v3.0.5-linux-amd64.tar.gz`. You can also download the latest unpublished version by replacing `{version}` with `latest`.

## TiDB DM (Data Migration)

Download [DM](/dev/reference/tools/data-migration/overview.md) by using the download link in the following table:

| Package name | OS | Architecture | SHA256 checksum |
|:---|:---|:---|:---|
| `http://download.pingcap.org/dm-{version}-linux-amd64.tar.gz` | Linux | amd64 | `http://download.pingcap.org/dm-{version}-linux-amd64.sha256` |
| `https://download.pingcap.org/dm-{version}-linux-amd64.tar.gz` | Linux | amd64 | `https://download.pingcap.org/dm-{version}-linux-amd64.sha256` |

> **Note:**
>
> `{version}` in the above download link indicates the version number of DM. For example, the download link for `v1.0.1` is `http://download.pingcap.org/dm-v1.0.1-linux-amd64.tar.gz`. You can check the published DM versions in the [DM Release](https://github.com/pingcap/dm/releases) page. You can also download the latest unpublished version by replacing `{version}` with `latest`.
> `{version}` in the above download link indicates the version number of DM. For example, the download link for `v1.0.1` is `https://download.pingcap.org/dm-v1.0.1-linux-amd64.tar.gz`. You can check the published DM versions in the [DM Release](https://github.com/pingcap/dm/releases) page. You can also download the latest unpublished version by replacing `{version}` with `latest`.

## Syncer, Loader, and Mydumper

If you want to download the latest version of [Syncer](/dev/reference/tools/syncer.md), [Loader](/dev/reference/tools/loader.md), or [Mydumper](/dev/reference/tools/mydumper.md), directly download the tidb-enterprise-tools package, because all these tools are included in this package.

| Package name | OS | Architecture | SHA256 checksum |
|:---|:---|:---|:---|
| [tidb-enterprise-tools-latest-linux-amd64.tar.gz](http://download.pingcap.org/tidb-enterprise-tools-latest-linux-amd64.tar.gz) | Linux | amd64 | [tidb-enterprise-tools-latest-linux-amd64.sha256](http://download.pingcap.org/tidb-enterprise-tools-latest-linux-amd64.sha256) |
| [tidb-enterprise-tools-latest-linux-amd64.tar.gz](https://download.pingcap.org/tidb-enterprise-tools-latest-linux-amd64.tar.gz) | Linux | amd64 | [tidb-enterprise-tools-latest-linux-amd64.sha256](https://download.pingcap.org/tidb-enterprise-tools-latest-linux-amd64.sha256) |

This enterprise tools package includes all the following tools:

Expand Down
4 changes: 2 additions & 2 deletions dev/reference/tools/pd-control.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ If you want to download the latest version of `pd-ctl`, directly download the Ti

| Package download link | OS | Architecture | SHA256 checksum |
|:---|:---|:---|:---|
| `http://download.pingcap.org/tidb-{version}-linux-amd64.tar.gz` (pd-ctl) | Linux | amd64 | `http://download.pingcap.org/tidb-{version}-linux-amd64.sha256` |
| `https://download.pingcap.org/tidb-{version}-linux-amd64.tar.gz` (pd-ctl) | Linux | amd64 | `https://download.pingcap.org/tidb-{version}-linux-amd64.sha256` |

> **Note:**
>
> `{version}` indicates the version number of TiDB. For example, if `{version}` is `v3.0.7`, the package download link is `http://download.pingcap.org/tidb-v3.0.7-linux-amd64.tar.gz`. You can also download the latest unpublished version by replacing `{version}` with `latest`.
> `{version}` indicates the version number of TiDB. For example, if `{version}` is `v3.0.7`, the package download link is `https://download.pingcap.org/tidb-v3.0.7-linux-amd64.tar.gz`. You can also download the latest unpublished version by replacing `{version}` with `latest`.

## Usage

Expand Down
2 changes: 1 addition & 1 deletion scripts/upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ def upload(local_file, remote_name, ttl=3600):
print(local_file, remote_name)
upload(local_file, remote_name)

print("http://download.pingcap.org/{}".format(remote_name))
print("https://download.pingcap.org/{}".format(remote_name))
2 changes: 1 addition & 1 deletion v1.0/op-guide/ansible-deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ It is recommended to configure load balancing to provide uniform SQL interface.
You can also download the binary manually. Use `wget` to download the binary and replace the existing binary in `tidb-ansible/resource/bin/` manually.

```
wget http://download.pingcap.org/tidb-v1.0.0-linux-amd64-unportable.tar.gz
wget https://download.pingcap.org/tidb-v1.0.0-linux-amd64-unportable.tar.gz
```

> **Note:**
Expand Down
4 changes: 2 additions & 2 deletions v1.0/op-guide/backup-restore.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ Use the following tools for data backup and restoration:

```bash
# Download the tool package.
wget http://download.pingcap.org/tidb-enterprise-tools-latest-linux-amd64.tar.gz
wget http://download.pingcap.org/tidb-enterprise-tools-latest-linux-amd64.sha256
wget https://download.pingcap.org/tidb-enterprise-tools-latest-linux-amd64.tar.gz
wget https://download.pingcap.org/tidb-enterprise-tools-latest-linux-amd64.sha256

# Check the file integrity. If the result is OK, the file is correct.
sha256sum -c tidb-enterprise-tools-latest-linux-amd64.sha256
Expand Down
4 changes: 2 additions & 2 deletions v1.0/op-guide/binary-deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,8 @@ TiDB provides the official binary installation package that supports Linux. For

```
# Download the package.
wget http://download.pingcap.org/tidb-latest-linux-amd64.tar.gz
wget http://download.pingcap.org/tidb-latest-linux-amd64.sha256
wget https://download.pingcap.org/tidb-latest-linux-amd64.tar.gz
wget https://download.pingcap.org/tidb-latest-linux-amd64.sha256

# Check the file integrity. If the result is OK, the file is correct.
sha256sum -c tidb-latest-linux-amd64.sha256
Expand Down
4 changes: 2 additions & 2 deletions v1.0/op-guide/migration-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ See [Download the TiDB toolset](#download-the-tidb-toolset-linux) to download th

```bash
# Download the tool package.
wget http://download.pingcap.org/tidb-enterprise-tools-latest-linux-amd64.tar.gz
wget http://download.pingcap.org/tidb-enterprise-tools-latest-linux-amd64.sha256
wget https://download.pingcap.org/tidb-enterprise-tools-latest-linux-amd64.tar.gz
wget https://download.pingcap.org/tidb-enterprise-tools-latest-linux-amd64.sha256

# Check the file integrity. If the result is OK, the file is correct.
sha256sum -c tidb-enterprise-tools-latest-linux-amd64.sha256
Expand Down
4 changes: 2 additions & 2 deletions v1.0/op-guide/migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ See [Download the TiDB enterprise toolset](#download-the-tidb-enterprise-toolset

```bash
# Download the enterprise tool package.
wget http://download.pingcap.org/tidb-enterprise-tools-latest-linux-amd64.tar.gz
wget http://download.pingcap.org/tidb-enterprise-tools-latest-linux-amd64.sha256
wget https://download.pingcap.org/tidb-enterprise-tools-latest-linux-amd64.tar.gz
wget https://download.pingcap.org/tidb-enterprise-tools-latest-linux-amd64.sha256

# Check the file integrity. If the result is OK, the file is correct.
sha256sum -c tidb-enterprise-tools-latest-linux-amd64.sha256
Expand Down
2 changes: 1 addition & 1 deletion v1.0/op-guide/offline-ansible-deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Before you start, make sure that you have:

1. Install Ansible offline on the CentOS 7 system:

> Download the [Ansible](http://download.pingcap.org/ansible-2.4-rpms.el7.tar.gz) offline installation package to the Control Machine.
> Download the [Ansible](https://download.pingcap.org/ansible-2.4-rpms.el7.tar.gz) offline installation package to the Control Machine.

```bash
# tar -xzvf ansible-2.4-rpms.el7.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion v1.0/scripts/upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ def upload(local_file, remote_name, ttl=3600):
remote_name = sys.argv[2]
upload(local_file, remote_name)

print("http://download.pingcap.org/{}".format(remote_name))
print("https://download.pingcap.org/{}".format(remote_name))
2 changes: 1 addition & 1 deletion v1.0/tispark/tispark-user-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ For the hybrid deployment of the TiDB Connector for Spark and TiKV, add the TiDB

## Deploy the TiDB Connector for Spark

Download the TiDB Connector for Spark's jar package [here](http://download.pingcap.org/tispark-0.1.0-SNAPSHOT-jar-with-dependencies.jar).
Download the TiDB Connector for Spark's jar package [here](https://download.pingcap.org/tispark-0.1.0-SNAPSHOT-jar-with-dependencies.jar).

### Deploy the TiDB Connector for Spark on the existing Spark cluster

Expand Down
2 changes: 1 addition & 1 deletion v1.0/tools/loader.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ category: advanced

Loader is a data import tool to load data to TiDB.

[Download the Binary](http://download.pingcap.org/tidb-enterprise-tools-latest-linux-amd64.tar.gz).
[Download the Binary](https://download.pingcap.org/tidb-enterprise-tools-latest-linux-amd64.tar.gz).

## Why did we develop Loader?

Expand Down
4 changes: 2 additions & 2 deletions v1.0/tools/syncer.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ Syncer is a tool used to import data incrementally. It is a part of the TiDB ent

```bash
# Download the tool package.
wget http://download.pingcap.org/tidb-enterprise-tools-latest-linux-amd64.tar.gz
wget http://download.pingcap.org/tidb-enterprise-tools-latest-linux-amd64.sha256
wget https://download.pingcap.org/tidb-enterprise-tools-latest-linux-amd64.tar.gz
wget https://download.pingcap.org/tidb-enterprise-tools-latest-linux-amd64.sha256

# Check the file integrity. If the result is OK, the file is correct.
sha256sum -c tidb-enterprise-tools-latest-linux-amd64.sha256
Expand Down
8 changes: 4 additions & 4 deletions v1.0/tools/tidb-binlog-kafka.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ The Kafka cluster stores the binlog data written by Pump and provides the binlog

```bash
# Download the tool package.
wget http://download.pingcap.org/tidb-binlog-latest-linux-amd64.tar.gz
wget http://download.pingcap.org/tidb-binlog-latest-linux-amd64.sha256
wget https://download.pingcap.org/tidb-binlog-latest-linux-amd64.tar.gz
wget https://download.pingcap.org/tidb-binlog-latest-linux-amd64.sha256

# Check the file integrity. If the result is OK, the file is correct.
sha256sum -c tidb-binlog-latest-linux-amd64.sha256
Expand Down Expand Up @@ -351,8 +351,8 @@ CentOS 7+

```bash
# Download PbReader package
wget http://download.pingcap.org/pb_reader-latest-linux-amd64.tar.gz
wget http://download.pingcap.org/pb_reader-latest-linux-amd64.sha256
wget https://download.pingcap.org/pb_reader-latest-linux-amd64.tar.gz
wget https://download.pingcap.org/pb_reader-latest-linux-amd64.sha256

# Check the file integrity. If the result is OK, the file is correct.
sha256sum -c pb_reader-latest-linux-amd64.sha256
Expand Down
4 changes: 2 additions & 2 deletions v1.0/tools/tidb-binlog.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ Drainer collects binlog files from each Pump node, converts them into specified

```bash
# Download the tool package.
wget http://download.pingcap.org/tidb-binlog-latest-linux-amd64.tar.gz
wget http://download.pingcap.org/tidb-binlog-latest-linux-amd64.sha256
wget https://download.pingcap.org/tidb-binlog-latest-linux-amd64.tar.gz
wget https://download.pingcap.org/tidb-binlog-latest-linux-amd64.sha256

# Check the file integrity. If the result is OK, the file is correct.
sha256sum -c tidb-binlog-latest-linux-amd64.sha256
Expand Down
2 changes: 1 addition & 1 deletion v2.0/op-guide/ansible-deployment-rolling-update.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ When you perform a rolling update for a TiDB cluster, the service is shut down s
You can also download the binary manually. Use `wget` to download the binary and replace the existing binary in `/home/tidb/tidb-ansible/resource/bin/` with it manually.

```
wget http://download.pingcap.org/tidb-v2.0.3-linux-amd64-unportable.tar.gz
wget https://download.pingcap.org/tidb-v2.0.3-linux-amd64-unportable.tar.gz
```

> **Note:**
Expand Down
Loading