From b567f580a3c22034ba05dff0a39e9439147472bf Mon Sep 17 00:00:00 2001 From: Benedikt Rollik Date: Tue, 22 Jul 2025 13:48:30 +0200 Subject: [PATCH] fix(dbaas): specify postgresql client version --- tutorials/migrate-databases-instance/index.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorials/migrate-databases-instance/index.mdx b/tutorials/migrate-databases-instance/index.mdx index 70173136b5..305d1ffc53 100644 --- a/tutorials/migrate-databases-instance/index.mdx +++ b/tutorials/migrate-databases-instance/index.mdx @@ -60,7 +60,7 @@ This guide consists of two parts, depending on which database Engine your Instan ``` 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: ``` - apt install postgresql-client-common + apt install postgresql-client-16 ``` 4. Dump the content of the originating database into a local SQL file on the Instance: ``` @@ -184,4 +184,4 @@ Once you have created both, the destination database and its users, import your ## Conclusion -You now have exported your existing PostgreSQL or MySQL database and imported it into a Scaleway Managed Datatabase Instance. To finish the migration process of your database, update the credentials and server information in the configuration files of your existing application. Once this information is updated, your application will use your database on Instances managed by Scaleway. For more information about the Database product, refer to the [product information page](https://www.scaleway.com/en/database/) and the [product documentation](/managed-databases-for-postgresql-and-mysql/quickstart/). \ No newline at end of file +You now have exported your existing PostgreSQL or MySQL database and imported it into a Scaleway Managed Datatabase Instance. To finish the migration process of your database, update the credentials and server information in the configuration files of your existing application. Once this information is updated, your application will use your database on Instances managed by Scaleway. For more information about the Database product, refer to the [product information page](https://www.scaleway.com/en/database/) and the [product documentation](/managed-databases-for-postgresql-and-mysql/quickstart/).