Skip to content

Commit 4862802

Browse files
committed
Update restore how-tos with conditions
1 parent d565d9b commit 4862802

File tree

6 files changed

+70
-53
lines changed

6 files changed

+70
-53
lines changed

articles/mariadb/howto-restore-server-cli.md

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
---
22
title: How to backup and restore a server in Azure Database for MariaDB
33
description: Learn how to backup and restore a server in Azure Database for MariaDB by using the Azure CLI.
4-
author: rachel-msft
5-
ms.author: raagyema
4+
author: ajlam
5+
ms.author: andrela
66
ms.service: mariadb
77
ms.devlang: azurecli
88
ms.topic: conceptual
9-
ms.date: 11/10/2018
9+
ms.date: 10/25/2019
1010
---
1111
# How to back up and restore a server in Azure Database for MariaDB using the Azure CLI
1212

13-
## Backup happens automatically
14-
1513
Azure Database for MariaDB servers are backed up periodically to enable Restore features. Using this feature you may restore the server and all its databases to an earlier point-in-time, on a new server.
1614

1715
## Prerequisites
@@ -72,11 +70,13 @@ The `az mariadb server restore` command requires the following parameters:
7270
| restore-point-in-time | 2018-03-13T13:59:00Z | Select a point in time to restore to. This date and time must be within the source server's backup retention period. Use the ISO8601 date and time format. For example, you can use your own local time zone, such as `2018-03-13T05:59:00-08:00`. You can also use the UTC Zulu format, for example, `2018-03-13T13:59:00Z`. |
7371
| source-server | mydemoserver | The name or ID of the source server to restore from. |
7472

75-
When you restore a server to an earlier point in time, a new server is created. The original server and its databases from the specified point in time are copied to the new server.
73+
WWhen you restore a server to an earlier point in time, a new server is created. The original server and its databases from the specified point in time are copied to the new server.
74+
75+
The location and pricing tier values for the restored server remain the same as the original server.
7676

77-
The location and pricing tier values for the restored server remain the same as the original server.
77+
After the restore process finishes, locate the new server and verify that the data is restored as expected. The new server has the same server admin login name and password that was valid for the existing server at the time the restore was initiated. The password can be changed from the new server's **Overview** page.
7878

79-
After the restore process finishes, locate the new server and verify that the data is restored as expected.
79+
The new server created during a restore does not have the firewall rules or VNet service endpoints that existed on the original server. These rules need to be set up separately for this new server.
8080

8181
## Geo restore
8282

@@ -113,12 +113,14 @@ The `az mariadb server georestore` command requires the following parameters:
113113
|location | eastus | The location of the new server. |
114114
|sku-name| GP_Gen5_8 | This parameter sets the pricing tier, compute generation, and number of vCores of the new server. GP_Gen5_8 maps to a General Purpose, Gen 5 server with 8 vCores.|
115115

116-
>[!Important]
117-
>When creating a new server by a geo restore, it inherits the same storage size and pricing tier as the source server. These values cannot be changed during creation. After the new server is created, its storage size can be scaled up.
116+
When creating a new server by a geo restore, it inherits the same storage size and pricing tier as the source server. These values cannot be changed during creation. After the new server is created, its storage size can be scaled up.
117+
118+
After the restore process finishes, locate the new server and verify that the data is restored as expected. The new server has the same server admin login name and password that was valid for the existing server at the time the restore was initiated. The password can be changed from the new server's **Overview** page.
118119

119-
After the restore process finishes, locate the new server and verify that the data is restored as expected.
120+
The new server created during a restore does not have the firewall rules or VNet service endpoints that existed on the original server. These rules need to be set up separately for this new server.
120121

121122
## Next steps
122123

123-
- Learn more about the service's [backups](concepts-backup.md).
124-
- Learn more about [business continuity](concepts-business-continuity.md) options.
124+
- Learn more about the service's [backups](concepts-backup.md)
125+
- Learn about [replicas](concepts-read-replicas.md)
126+
- Learn more about [business continuity](concepts-business-continuity.md) options

articles/mariadb/howto-restore-server-portal.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: ajlam
55
ms.author: andrela
66
ms.service: mariadb
77
ms.topic: conceptual
8-
ms.date: 04/15/2019
8+
ms.date: 10/25/2019
99
---
1010

1111
# How to backup and restore a server in Azure Database for MariaDB using the Azure portal
@@ -68,10 +68,13 @@ The following steps restore the sample server to a point-in-time:
6868

6969
5. Once the restore finishes, locate the new server that is created to verify the data was restored as expected.
7070

71-
>[!Note]
72-
>Note the new server created by point-in-time restore has the same server admin login name and password that was valid for the existing server at the point-in-time chose. You can change the password from the new server's **Overview** page.
71+
72+
The new server created by point-in-time restore has the same server admin login name and password that was valid for the existing server at the point-in-time chose. You can change the password from the new server's **Overview** page.
73+
74+
The new server created during a restore does not have the firewall rules or VNet service endpoints that existed on the original server. These rules need to be set up separately for this new server.
7375

7476
## Geo restore
77+
7578
If you configured your server for geographically redundant backups, a new server can be created from the backup of that existing server. This new server can be created in any region that Azure Database for MariaDB is available.
7679

7780
1. Select **Databases** > **Azure Database for MariaDB**. You can also type **MariaDB** in the search box to find the service.
@@ -87,9 +90,12 @@ If you configured your server for geographically redundant backups, a new server
8790
8891
3. Fill out the rest of the form with your preferences. You can select any **Location**. After selecting the location, you can select **Pricing Tier**. By default the parameters for the existing server you are restoring from are displayed. You can click **OK** without making any changes to inherit those settings. Or you can change **Compute Generation** (if available in the region you have chosen), number of **vCores**, **Backup Retention Period**, and **Backup Redundancy Option**. Changing **Pricing Tier** (Basic, General Purpose, or Memory Optimized) or **Storage** size during restore is not supported.
8992

90-
>[!Note]
91-
>The new server created by geo restore has the same server admin login name and password that was valid for the existing server at the time the restore was initiated. The password can be changed from the new server's **Overview** page.
93+
The new server created by geo restore has the same server admin login name and password that was valid for the existing server at the time the restore was initiated. The password can be changed from the new server's **Overview** page.
94+
95+
The new server created during a restore does not have the firewall rules or VNet service endpoints that existed on the original server. These rules need to be set up separately for this new server.
96+
9297

9398
## Next steps
94-
- Learn more about the service's [backups](concepts-backup.md).
95-
- Learn more about [business continuity](concepts-business-continuity.md) options.
99+
- Learn more about the service's [backups](concepts-backup.md)
100+
- Learn about [replicas](concepts-read-replicas.md)
101+
- Learn more about [business continuity](concepts-business-continuity.md) options

articles/mysql/howto-restore-server-cli.md

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
---
22
title: How to backup and restore a server in Azure Database for MySQL
33
description: Learn how to backup and restore a server in Azure Database for MySQL by using the Azure CLI.
4-
author: rachel-msft
5-
ms.author: raagyema
4+
author: ajlam
5+
ms.author: andrela
66
ms.service: mysql
77
ms.devlang: azurecli
88
ms.topic: conceptual
9-
ms.date: 04/01/2018
9+
ms.date: 10/25/2019
1010
---
1111
# How to back up and restore a server in Azure Database for MySQL using the Azure CLI
1212

13-
## Backup happens automatically
1413
Azure Database for MySQL servers are backed up periodically to enable Restore features. Using this feature you may restore the server and all its databases to an earlier point-in-time, on a new server.
1514

1615
## Prerequisites
@@ -74,7 +73,9 @@ When you restore a server to an earlier point in time, a new server is created.
7473

7574
The location and pricing tier values for the restored server remain the same as the original server.
7675

77-
After the restore process finishes, locate the new server and verify that the data is restored as expected.
76+
After the restore process finishes, locate the new server and verify that the data is restored as expected. The new server has the same server admin login name and password that was valid for the existing server at the time the restore was initiated. The password can be changed from the new server's **Overview** page.
77+
78+
The new server created during a restore does not have the firewall rules or VNet service endpoints that existed on the original server. These rules need to be set up separately for this new server.
7879

7980
## Geo restore
8081
If you configured your server for geographically redundant backups, a new server can be created from the backup of that existing server. This new server can be created in any region that Azure Database for MySQL is available.
@@ -109,12 +110,13 @@ The `az mysql server georestore` command requires the following parameters:
109110
|location | eastus | The location of the new server. |
110111
|sku-name| GP_Gen5_8 | This parameter sets the pricing tier, compute generation, and number of vCores of the new server. GP_Gen5_8 maps to a General Purpose, Gen 5 server with 8 vCores.|
111112

113+
When creating a new server by a geo restore, it inherits the same storage size and pricing tier as the source server. These values cannot be changed during creation. After the new server is created, its storage size can be scaled up.
112114

113-
>[!Important]
114-
>When creating a new server by a geo restore, it inherits the same storage size and pricing tier as the source server. These values cannot be changed during creation. After the new server is created, its storage size can be scaled up.
115+
After the restore process finishes, locate the new server and verify that the data is restored as expected. The new server has the same server admin login name and password that was valid for the existing server at the time the restore was initiated. The password can be changed from the new server's **Overview** page.
115116

116-
After the restore process finishes, locate the new server and verify that the data is restored as expected.
117+
The new server created during a restore does not have the firewall rules or VNet service endpoints that existed on the original server. These rules need to be set up separately for this new server.
117118

118119
## Next steps
119-
- Learn more about the service's [backups](concepts-backup.md).
120-
- Learn more about [business continuity](concepts-business-continuity.md) options.
120+
- Learn more about the service's [backups](concepts-backup.md)
121+
- Learn about [replicas](concepts-read-replicas.md)
122+
- Learn more about [business continuity](concepts-business-continuity.md) options

articles/mysql/howto-restore-server-portal.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: ajlam
55
ms.author: andrela
66
ms.service: mysql
77
ms.topic: conceptual
8-
ms.date: 04/01/2018
8+
ms.date: 10/25/2019
99
---
1010

1111
# How to backup and restore a server in Azure Database for MySQL using the Azure portal
@@ -66,8 +66,9 @@ The following steps restore the sample server to a point-in-time:
6666

6767
5. Once the restore finishes, locate the new server that is created to verify the data was restored as expected.
6868

69-
>[!Note]
70-
>Note the new server created by point-in-time restore has the same server admin login name and password that was valid for the existing server at the point-in-time chose. You can change the password from the new server's **Overview** page.
69+
The new server created by point-in-time restore has the same server admin login name and password that was valid for the existing server at the point-in-time chose. You can change the password from the new server's **Overview** page.
70+
71+
The new server created during a restore does not have the firewall rules or VNet service endpoints that existed on the original server. These rules need to be set up separately for this new server.
7172

7273
## Geo restore
7374
If you configured your server for geographically redundant backups, a new server can be created from the backup of that existing server. This new server can be created in any region that Azure Database for MySQL is available.
@@ -85,10 +86,13 @@ If you configured your server for geographically redundant backups, a new server
8586
8687
3. Fill out the rest of the form with your preferences. You can select any **Location**. After selecting the location, you can select **Pricing Tier**. By default the parameters for the existing server you are restoring from are displayed. You can click **OK** without making any changes to inherit those settings. Or you can change **Compute Generation** (if available in the region you have chosen), number of **vCores**, **Backup Retention Period**, and **Backup Redundancy Option**. Changing **Pricing Tier** (Basic, General Purpose, or Memory Optimized) or **Storage** size during restore is not supported.
8788

88-
>[!Note]
89-
>The new server created by geo restore has the same server admin login name and password that was valid for the existing server at the time the restore was initiated. The password can be changed from the new server's **Overview** page.
89+
The new server created by geo restore has the same server admin login name and password that was valid for the existing server at the time the restore was initiated. The password can be changed from the new server's **Overview** page.
90+
91+
The new server created during a restore does not have the firewall rules or VNet service endpoints that existed on the original server. These rules need to be set up separately for this new server.
92+
9093

9194

9295
## Next steps
93-
- Learn more about the service's [backups](concepts-backup.md).
94-
- Learn more about [business continuity](concepts-business-continuity.md) options.
96+
- Learn more about the service's [backups](concepts-backup.md)
97+
- Learn about [replicas](concepts-read-replicas.md)
98+
- Learn more about [business continuity](concepts-business-continuity.md) options

articles/postgresql/howto-restore-server-cli.md

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,11 @@ ms.author: raagyema
66
ms.service: postgresql
77
ms.devlang: azurecli
88
ms.topic: conceptual
9-
ms.date: 05/06/2019
9+
ms.date: 10/25/2019
1010
---
1111

1212
# How to back up and restore a server in Azure Database for PostgreSQL - Single Server using the Azure CLI
1313

14-
## Backup happens automatically
1514
Azure Database for PostgreSQL servers are backed up periodically to enable Restore features. Using this feature you may restore the server and all its databases to an earlier point-in-time, on a new server.
1615

1716
## Prerequisites
@@ -75,9 +74,9 @@ When you restore a server to an earlier point in time, a new server is created.
7574

7675
The location and pricing tier values for the restored server remain the same as the original server.
7776

78-
After the restore process finishes, locate the new server and verify that the data is restored as expected.
77+
After the restore process finishes, locate the new server and verify that the data is restored as expected. The new server has the same server admin login name and password that was valid for the existing server at the time the restore was initiated. The password can be changed from the new server's **Overview** page.
7978

80-
The new server created during a restore does not have the firewall rules that existed on the original server. Firewall rules need to be set up separately for this new server.
79+
The new server created during a restore does not have the firewall rules or VNet service endpoints that existed on the original server. These rules need to be set up separately for this new server.
8180

8281
## Geo restore
8382
If you configured your server for geographically redundant backups, a new server can be created from the backup of that existing server. This new server can be created in any region that Azure Database for PostgreSQL is available.
@@ -112,14 +111,13 @@ The `az postgres server georestore` command requires the following parameters:
112111
|location | eastus | The location of the new server. |
113112
|sku-name| GP_Gen4_8 | This parameter sets the pricing tier, compute generation, and number of vCores of the new server. GP_Gen4_8 maps to a General Purpose, Gen 4 server with 8 vCores.|
114113

114+
When creating a new server by a geo restore, it inherits the same storage size and pricing tier as the source server. These values cannot be changed during creation. After the new server is created, its storage size can be scaled up.
115115

116-
>[!Important]
117-
>When creating a new server by a geo restore, it inherits the same storage size and pricing tier as the source server. These values cannot be changed during creation. After the new server is created, its storage size can be scaled up.
116+
After the restore process finishes, locate the new server and verify that the data is restored as expected. The new server has the same server admin login name and password that was valid for the existing server at the time the restore was initiated. The password can be changed from the new server's **Overview** page.
118117

119-
After the restore process finishes, locate the new server and verify that the data is restored as expected.
120-
121-
The new server created during a restore does not have the firewall rules that existed on the original server. Firewall rules need to be set up separately for this new server.
118+
The new server created during a restore does not have the firewall rules or VNet service endpoints that existed on the original server. These rules need to be set up separately for this new server.
122119

123120
## Next steps
124-
- Learn more about the service's [backups](concepts-backup.md).
125-
- Learn more about [business continuity](concepts-business-continuity.md) options.
121+
- Learn more about the service's [backups](concepts-backup.md)
122+
- Learn about [replicas](concepts-read-replicas.md)
123+
- Learn more about [business continuity](concepts-business-continuity.md) options

0 commit comments

Comments
 (0)