Skip to content

Commit e392030

Browse files
committed
Proofreading
1 parent c2ab543 commit e392030

File tree

1 file changed

+24
-26
lines changed
  • pages/public_cloud/public_cloud_databases/databases_19_migrate_from_1AZ_to_3AZ

1 file changed

+24
-26
lines changed

pages/public_cloud/public_cloud_databases/databases_19_migrate_from_1AZ_to_3AZ/guide.en-gb.md

Lines changed: 24 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "How to move a database service from a single AZ region to a 3-AZ region"
33
excerpt: "Learn how to move your OVHcloud Public Cloud Database from a single AZ to a 3-AZ region and ensure high availability"
4-
updated: 2025-08-08
4+
updated: 2025-08-19
55
---
66

77
## Objective
@@ -21,9 +21,9 @@ Migrating your database service to a 3-AZ deployment significantly enhances its
2121

2222
For more detailed information on the deployment modes and their technical specifications, please refer to our dedicated guide: [Comparison of Public Cloud Databases Deployment Modes - Understanding 3-AZ / 1-AZ](/pages/public_cloud/public_cloud_databases/databases_18_regions_comparison).
2323

24-
Here is a list of currently support 1-AZ and 3-AZ regions for database services:
24+
Here is a list of currently supported 1-AZ and 3-AZ regions for database services:
2525

26-
![databases - datacentres](images/databases_datacentre.png)
26+
![databases - datacentres](images/databases_datacentre.png){.thumbnail}
2727

2828
## Reversibility
2929

@@ -35,50 +35,51 @@ The migration from a Single-AZ region to a Multi-AZ region is reversible — ser
3535

3636
> [!tabs]
3737
> Via the OVHcloud Control Panel
38-
>> To move a database service from a 1-AZ to a 3-AZ region, log in to the OVHcloud Control Panel and open your Public Cloud project. Click `Databases`{.action} in the left navigation bar, select your database service then click the `Backups`{.action} tab.
38+
>> To move a database service from a 1-AZ to a 3-AZ region, log in to the [OVHcloud Control Panel](/links/manager) and open your Public Cloud project. Click `Databases`{.action} in the left navigation bar, select your database service then click the `Backups`{.action} tab.
3939
>>
40-
>> ![databases - select engines instances and go to the backups section](images/databases_select_cluster.png)
40+
>> ![databases - select engines instances and go to the backups section](images/databases_select_cluster.png){.thumbnail}
4141
>>
4242
>> Choose the backup from which you wish to fork, click on the `...`{.action} button and click on the `Duplicate (fork)`{.action} button.
4343
>>
44-
>> ![databases - click on the duplicate button](images/databases_fork_backup.png)
44+
>> ![databases - click on the duplicate button](images/databases_fork_backup.png){.thumbnail}
4545
>>
4646
>> The page that appears allows you to configure your service and choose the destination region.<br>
4747
>> Select the Restore point named `Backup`{.action}.
4848
>>
49-
>> ![databases fork - select backup for the restore point part](images/databases_fork_restore_point.png)
49+
>> ![databases fork - select backup for the restore point part](images/databases_fork_restore_point.png){.thumbnail}
5050
>>
5151
>> Select a `3-AZ region`{.action}.
5252
>>
53-
>> ![databases fork - select your 3-AZ region](images/databases_fork_region.png)
53+
>> ![databases fork - select your 3-AZ region](images/databases_fork_region.png){.thumbnail}
5454
>>
55-
>> Select your `plan`{.action} of the service.
55+
>> Select a service `plan`{.action}.
5656
>>
57-
>> ![databases fork - select your plan](images/databases_fork_plan.png)
57+
>> ![databases fork - select your plan](images/databases_fork_plan.png){.thumbnail}
5858
>>
5959
>> Select the `instance`{.action} that will host the service.
6060
>>
61-
>> ![databases fork - select the instance](images/databases_fork_instance.png)
61+
>> ![databases fork - select the instance](images/databases_fork_instance.png){.thumbnail}
6262
>>
63-
>> Select the `storage`{.action} of the service.
63+
>> Select the `storage`{.action} capacity of the service.
6464
>>
65-
>> ![databases fork - select the storage](images/databases_fork_storage.png)
65+
>> ![databases fork - select the storage](images/databases_fork_storage.png){.thumbnail}
6666
>>
6767
>> If needed, you can edit the connectivity settings, then verify the IP addresses to whitelist (the list is pre-filled by default with the origin service's configuration).
6868
>>
69-
>> ![databases fork - select optional fields](images/databases_fork_options.png)
69+
>> ![databases fork - select optional fields](images/databases_fork_options.png){.thumbnail}
7070
>>
7171
>> When you have completed your configuration, review your order then click on the `Order`{.action} button.
7272
>>
73-
>> ![databases fork - review](images/databases_fork_summary.png)
73+
>> ![databases fork - review](images/databases_fork_summary.png){.thumbnail}
7474
>>
7575
> Via the OVHcloud API
76+
>>
7677
>> > [!primary]
7778
>> >
7879
>> > To interact with your Public Cloud Databases services via the OVHcloud API, make sure you've mastered the basics first by consulting our guide: [Public Cloud Databases - Getting started with APIs](/pages/public_cloud/public_cloud_databases/databases_02_order_api).
7980
>> >
8081
>>
81-
>> To find the backup ID of a service, use this following API call:
82+
>> To find the backup ID of a service, use the following API call:
8283
>>
8384
>> > [!api]
8485
>> >
@@ -140,15 +141,12 @@ The migration from a Single-AZ region to a Multi-AZ region is reversible — ser
140141
After your new 3-AZ database service has been successfully provisioned, it's crucial to validate its deployment and ensure your applications can connect to it.
141142
142143
1. Test the connection to your new service:
143-
144-
1. Use a database client (e.g., psql for PostgreSQL, mysql for MySQL) or a simple script to verify that you can connect to the new 3-AZ service's endpoint using its credentials.
145-
2. Confirm that your data has been successfully migrated and is accessible.
146-
144+
1. Use a database client (e.g., psql for PostgreSQL, mysql for MySQL) or a simple script to verify that you can connect to the new 3-AZ service's endpoint using its credentials.
145+
2. Confirm that your data has been successfully migrated and is accessible.
147146
2. Configure your application to use the new service:
148-
149-
1. Update your application's configuration files or environment variables to point to the new 3-AZ database service's connection string (host, port, username, password).
150-
2. Restart your application to apply the changes.
151-
3. Thoroughly test your application's functionality to ensure it operates correctly with the new database endpoint.
147+
1. Update your application's configuration files or environment variables to point to the new 3-AZ database service's connection string (host, port, username, password).
148+
2. Restart your application to apply the changes.
149+
3. Thoroughly test your application's functionality to ensure it operates correctly with the new database endpoint.
152150
153151
### Clean up
154152
@@ -162,7 +160,7 @@ Follow these instructions to delete the old 1-AZ service:
162160
> Via the OVHcloud Control Panel
163161
>> Navigate to your list of database services, click on the `...`{.action} button on the service line and click on the `Delete`{.action} button to permanently delete the service.
164162
>>
165-
>> ![databases - delete the 1-AZ service](images/databases_delete_1az.png)
163+
>> ![databases - delete the 1-AZ service](images/databases_delete_1az.png){.thumbnail}
166164
>>
167165
> Via the OVHcloud API
168166
>> To delete your service, use the following API call:
@@ -179,4 +177,4 @@ We would love to help answer questions and appreciate any feedback you may have.
179177
180178
If you need training or technical assistance to implement our solutions, contact your sales representative or click on [this link](/links/professional-services) to get a quote and ask our Professional Services experts for a custom analysis of your project.
181179
182-
Are you on Discord? Connect to our channel at <https://discord.gg/PwPqWUpN8G> and interact directly with the team that builds our databases service!
180+
Are you on Discord? Connect to our channel at <https://discord.gg/ovhcloud> and interact directly with the team that builds our databases service!

0 commit comments

Comments
 (0)