Skip to content

Commit cb4d1e7

Browse files
committed
Feature/update disaster recovery documentation for consistency and clarity in backup and recovery instructions
1 parent 490fb7f commit cb4d1e7

26 files changed

+79
-77
lines changed

content/en/docs/2025.3/Guides/disaster-recovery/multiple-server-with-ha/backup/add-backup-to-application.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: "Add Scheduled Backup To Application Server"
3-
linkTitle: "Add Scheduled Backup To Application Server"
2+
title: "Add Scheduled Backup to Application Server"
3+
linkTitle: "Add Scheduled Backup to Application Server"
44
description: "Instructions to add scheduled backups to the Application Server."
55
weight: 40
66
---

content/en/docs/2025.3/Guides/disaster-recovery/multiple-server-with-ha/backup/web-application-server/add-backup-to-flow-debugger.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: "Add Scheduled Backup To Flow Debugger"
3-
linkTitle: "Add Scheduled Backup To Flow Debugger"
2+
title: "Add Scheduled Backup to Flow Debugger"
3+
linkTitle: "Add Scheduled Backup to Flow Debugger"
44
description: "Instructions to add scheduled backups to the Flow Debugger."
55
weight: 30
66
---

content/en/docs/2025.3/Guides/disaster-recovery/multiple-server-with-ha/backup/web-application-server/add-backup-to-gateway.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: "Add Scheduled Backup To Gateway"
3-
linkTitle: "Add Scheduled Backup To Gateway"
2+
title: "Add Scheduled Backup to Gateway"
3+
linkTitle: "Add Scheduled Backup to Gateway"
44
description: "Instructions to add scheduled backups to Gateway."
55
weight: 40
66
---

content/en/docs/2025.3/Guides/disaster-recovery/multiple-server-with-ha/recovery/recover-application-from-backup.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: "Recover Application Server From Scheduled Backup"
3-
linkTitle: "Recover Application Server From Scheduled Backup"
2+
title: "Recover Application Server from Scheduled Backup"
3+
linkTitle: "Recover Application Server from Scheduled Backup"
44
description: "Instructions to recover the Application Server from scheduled backups."
55
weight: 40
66
---
@@ -9,14 +9,14 @@ weight: 40
99

1010
This guide describes how to recover the Application Servers from a backup. This will recover the application's reliable collections. Any recovery needed for the cluster's configuration, the service's appsettings, manifests or settings must be done manually.
1111

12-
### Configure the Recover Script
12+
### Configure the Recovery Script
1313

1414
{{< section "/disaster-recovery/application-server/recover/configure-recover-script.md">}}
1515

16-
### Run the Recover Script
16+
### Run the Recovery Script
1717

18-
{{% alert title="Note" %}}
19-
A backup policy must be configured on the application server before running a recovery, see {{< ahref path="Cortex.Guides.DisasterRecoveryGuides.MultipleServerWithHA.Backup.AddBackupToApplicationServer" title="Add Scheduled Backup To Application Server" >}} for further information.
18+
{{% alert title="Warning" color="warning" %}}
19+
A backup policy must be configured on the Application Server before running a recovery, see {{< ahref path="Cortex.Guides.DisasterRecoveryGuides.MultipleServerWithHA.Backup.AddBackupToApplicationServer" title="Add Scheduled Backup to Application Server" >}} for further information.
2020
{{% /alert %}}
2121

2222
{{< section "/disaster-recovery/application-server/recover/run-recover-script.md">}}

content/en/docs/2025.3/Guides/disaster-recovery/multiple-server-with-ha/recovery/recover-encryption-key-from-backup.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,38 @@
11
---
2-
title: "Recover Encryption Key From Backup"
3-
linkTitle: "Recover Encryption Key From Backup"
2+
title: "Recover Encryption Key from Backup"
3+
linkTitle: "Recover Encryption Key from Backup"
44
description: "Instructions to recover the Encryption Key from backups."
55
weight: 30
66
---
77

88
# {{% param title %}}
99

10-
This guide describes how to recover the Encryption Key from a backup. This will recover the Encryption Key to the application servers, the web application server, and the load balancer server if a built-in load balancer is used.
10+
This guide describes how to recover the Encryption Key from a backup. This will recover the Encryption Key to the application servers, the web application server, and the load balancer server if the built-in load balancer is used.
1111

1212
{{% alert title="Warning" color="warning" %}}
13-
The Encryption Key must be recovered before any installation of {{% ctx %}}.
13+
If recovering to new hardware, the Encryption Key must be recovered before {{% ctx %}} is installed.
1414
{{% /alert %}}
1515

16-
### Configure the Recover Script
16+
### Configure the Recovery Script
1717
1. In the `Cortex Innovation {{< version >}} - App Server Install Scripts\Recovery` folder, locate the `Cortex.Innovation.EncryptionKey.Recover.ps1` script and open it with a text editor.
1818
1. Configure the script according to the details given below:
1919

2020
```powershell
2121
.\Cortex.EncryptionKey.Recover.ps1 `
22-
-TargetMachines @("app-server1","app-server2","app-server3", "lb-server","web-server") `
22+
-TargetMachines @("app-server1", "app-server2", "app-server3", "lb-server", "web-server") `
2323
-BackupPath "\\UncPath\BackupLocation" `
2424
-Credential $Credential
2525
```
2626
2727
| Name | Description |
2828
|------------------------------------------------|-------------|
2929
|`TargetMachines` | Configure the value with the names of the application servers, the web application server and load balancer server if using the built-in load balancer.|
30-
|`BackupPath` | Replace `\\UncPath\BackupLocation` with the path of the location the backups are stored in. if the path is a network path then the `Credentials` will be used to access that location.|
30+
|`BackupPath` | Replace `\\UncPath\BackupLocation` with the path of the location the backups are stored in. If the path is a network path then the `Credentials` will be used to access that location.|
3131
|`Credential` | The credentials of the user which will be used to access the `BackupPath`. It must be a domain user that is a member of the local Administrators group on the server. <br /><br /> This does not need to be changed, a prompt will appear to enter this information when the script is run.|
3232
3333
1. Save and close `Cortex.Innovation.EncryptionKey.Recover.ps1`.
3434
35-
### Run the Recover Script
35+
### Run the Recovery Script
3636
3737
{{< section "/disaster-recovery/encryption-key/recover/run-recover-script.md">}}
3838
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: "Recover Web Application From Scheduled Backups"
3-
linkTitle: "Recover Web Application From Scheduled Backups"
2+
title: "Recover Web Application from Scheduled Backups"
3+
linkTitle: "Recover Web Application from Scheduled Backups"
44
description: "Instructions to recover the Web Application Server from scheduled backups."
55
weight: 200
66
---

content/en/docs/2025.3/Guides/disaster-recovery/multiple-server-with-ha/recovery/web-application-server/recover-flow-debugger-from-backup.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: "Recover Flow Debugger From Scheduled Backup"
3-
linkTitle: "Recover Flow Debugger From Scheduled Backup"
2+
title: "Recover Flow Debugger from Scheduled Backup"
3+
linkTitle: "Recover Flow Debugger from Scheduled Backup"
44
description: "Instructions to recover the Flow Debugger from scheduled backups."
55
weight: 30
66
---
@@ -9,14 +9,14 @@ weight: 30
99

1010
This guide describes how to recover the Flow Debugger from a backup. This will recover the application's reliable collections. Any recovery needed for the cluster's configuration, the service's appsettings, manifests or settings must be done manually.
1111

12-
### Configure the Recover Script
12+
### Configure the Recovery Script
1313

1414
{{< section "/disaster-recovery/application-server/recover/configure-recover-script.md">}}
1515

16-
### Run the Recover Script
16+
### Run the Recovery Script
1717

18-
{{% alert title="Note" %}}
19-
A backup policy must be configured on the application server before running a recovery, see {{< ahref path="Cortex.Guides.DisasterRecoveryGuides.MultipleServerWithHA.Backup.AddBackupToFlowDebugger" title="Add Scheduled Backup to Flow Debugger" >}} for further information.
18+
{{% alert title="Warning" color="warning" %}}
19+
A backup policy must be configured on the Application Server before running a recovery, see {{< ahref path="Cortex.Guides.DisasterRecoveryGuides.MultipleServerWithHA.Backup.AddBackupToFlowDebugger" title="Add Scheduled Backup to Flow Debugger" >}} for further information.
2020
{{% /alert %}}
2121

2222
{{< section "/disaster-recovery/application-server/recover/run-recover-script.md">}}

content/en/docs/2025.3/Guides/disaster-recovery/multiple-server-with-ha/recovery/web-application-server/recover-gateway-from-backup.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: "Recover Gateway From Scheduled Backup"
3-
linkTitle: "Recover Gateway From Scheduled Backup"
2+
title: "Recover Gateway from Scheduled Backup"
3+
linkTitle: "Recover Gateway from Scheduled Backup"
44
description: "Instructions to recover Gateway from scheduled backups."
55
weight: 40
66
---
@@ -9,11 +9,11 @@ weight: 40
99

1010
This guide describes how to recover Gateway from a backup. This will recover the flow repositories and the OpenAPI definitions. Any recovery needed for the web config must be done manually.
1111

12-
### Configure the Recover Script
12+
### Configure the Recovery Script
1313

1414
{{< section "/disaster-recovery/web-application-server/recover/configure-recover-script.md">}}
1515

16-
### Run the Recover Script
16+
### Run the Recovery Script
1717

1818
{{% alert title="Note" %}}
1919
A backup policy should be configured on the application server before running a recovery, see {{< ahref path="Cortex.Guides.DisasterRecoveryGuides.MultipleServerWithHA.Backup.AddBackupToGateway" title="Add Scheduled Backup to Gateway" >}} for further information.

content/en/docs/2025.3/Guides/disaster-recovery/multiple-server-with-ha/remove/remove-backup-from-application.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: "Remove Scheduled Backup From Application Server"
3-
linkTitle: "Remove Scheduled Backup From Application Server"
2+
title: "Remove Scheduled Backup from Application Server"
3+
linkTitle: "Remove Scheduled Backup from Application Server"
44
description: "Instructions to remove scheduled backups from the Application Server."
55
weight: 50
66
---
@@ -23,6 +23,6 @@ This guide describes how to remove a scheduled backup from the Application Serve
2323

2424
## Next Steps?
2525

26-
1. [Remove Scheduled Backups From Web Application Server][]
26+
1. [Remove Scheduled Backups from Web Application Server][]
2727

28-
[Remove Scheduled Backups From Web Application Server]: {{< url path="Cortex.Guides.DisasterRecoveryGuides.MultipleServerWithHA.Remove.RemoveBackupsFromWebApplicationServer" >}}
28+
[Remove Scheduled Backups from Web Application Server]: {{< url path="Cortex.Guides.DisasterRecoveryGuides.MultipleServerWithHA.Remove.RemoveBackupsFromWebApplicationServer" >}}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: "Remove Scheduled Backups From Web Application Server"
3-
linkTitle: "Remove Scheduled Backups From Web Application Server"
2+
title: "Remove Scheduled Backups from Web Application Server"
3+
linkTitle: "Remove Scheduled Backups from Web Application Server"
44
description: "Instructions to remove scheduled backups from the Web Application Server."
55
weight: 200
66
---

0 commit comments

Comments
 (0)