Skip to content

Commit bef81c7

Browse files
authored
Update index.mdx (#5317)
1 parent 0bd6059 commit bef81c7

File tree

1 file changed

+4
-1
lines changed
  • tutorials/migrate-databases-instance

1 file changed

+4
-1
lines changed

tutorials/migrate-databases-instance/index.mdx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,13 @@ This guide consists of two parts, depending on which database Engine your Instan
5858
```
5959
apt update && apt upgrade -y
6060
```
61-
3. We use `pg_dump` to dump the content of the database to migrate. It is included in the package `postgresql-client-common`. Install it using apt:
61+
3. We use `pg_dump` to dump the content of the database to migrate. It is included in the package `postgresql-client-16`. Install it using apt:
6262
```
6363
apt install postgresql-client-16
6464
```
65+
<Message type="note">
66+
Ensure to use the latest version of the `postgresql-client` package when installing it. You can list all available versions of the package using the following command `apt list -a postgresql-client-*`
67+
</Message>
6568
4. Dump the content of the originating database into a local SQL file on the Instance:
6669
```
6770
pg_dump --host=<host> --port=<port> --username=<user> --dbname=<database_name> --file=<filename>.sql

0 commit comments

Comments
 (0)