From b9e5b3bff226b0428f2223fe75aee5e737548fcf Mon Sep 17 00:00:00 2001 From: Benedikt Rollik Date: Tue, 22 Jul 2025 13:54:52 +0200 Subject: [PATCH] Update index.mdx --- tutorials/migrate-databases-instance/index.mdx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tutorials/migrate-databases-instance/index.mdx b/tutorials/migrate-databases-instance/index.mdx index 305d1ffc53..f4d34bf382 100644 --- a/tutorials/migrate-databases-instance/index.mdx +++ b/tutorials/migrate-databases-instance/index.mdx @@ -58,10 +58,13 @@ This guide consists of two parts, depending on which database Engine your Instan ``` apt update && apt upgrade -y ``` -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: +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: ``` apt install postgresql-client-16 ``` + + 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-*` + 4. Dump the content of the originating database into a local SQL file on the Instance: ``` pg_dump --host= --port= --username= --dbname= --file=.sql