Skip to content

Commit 11472c2

Browse files
authored
Update bendsave.md
1 parent 858bc92 commit 11472c2

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

docs/en/tutorials/recovery/bendsave.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,21 @@ Before you start, ensure you have the following prerequisites in place:
1515

1616
- BendSQL is installed on your local machine. See [Installing BendSQL](/guides/sql-clients/bendsql/#installing-bendsql) for instructions on how to install BendSQL using various package managers.
1717

18+
- The Databend release package: Download the release from the [Databend GitHub Releases page](https://github.com/databendlabs/databend/releases). The package contains the `databend-bendsave` binary in the `bin` directory, which is the tool we'll use for backup and restore operations in this tutorial.
19+
```bash
20+
databend-v1.2.725-nightly-x86_64-unknown-linux-gnu/
21+
├── bin
22+
│ ├── bendsql
23+
│ ├── databend-bendsave # The BendSave binary used in this tutorial
24+
│ ├── databend-meta
25+
│ ├── databend-metactl
26+
│ └── databend-query
27+
├── configs
28+
│ ├── databend-meta.toml
29+
│ └── databend-query.toml
30+
└── ...
31+
```
32+
1833
## Step 1: Launch MinIO in Docker
1934

2035
1. Start a MinIO container on your Linux machine. The following command launches a MinIO container named **minio**, with ports `9000` (for the API) and `9001` (for the web console) exposed:
@@ -214,4 +229,4 @@ SELECT * FROM books;
214229
├──────────────────┼──────────────────┼──────────────────┤
215230
│ 1 │ Invisible Stars │ General │
216231
└────────────────────────────────────────────────────────┘
217-
```
232+
```

0 commit comments

Comments
 (0)