Skip to content

Commit a93134b

Browse files
author
cortex-lp
committed
re-added versions
1 parent 4bcf5f8 commit a93134b

119 files changed

Lines changed: 2990 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: "2024.1 to 2024.3"
3+
linkTitle: "2024.1 to 2024.3"
4+
description: "Instructions to upgrade {{% ctx %}} 2024.1 to 2024.3"
5+
weight: 1000
6+
outOfSupport: true
7+
---
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: "Multiple Server - With HA"
3+
linkTitle: "Multiple Server - With HA"
4+
description: "Upgrade instructions for multiple on-premise servers with high availability (HA)."
5+
weight: 10
6+
---
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: "Try it out"
3+
linkTitle: "Try it out"
4+
description: "Information about trying out {{% ctx %}} after upgrade."
5+
weight: 60
6+
---
7+
8+
# {{% param title %}}
9+
10+
This guide describes how to try out an upgraded {{% ctx %}} to make sure it is working. Please ensure that both the [Application Servers and Load Balancer Upgrade][] and [Web Application Server Upgrade][] has been completed before taking these steps.
11+
12+
{{< section "/upgrade/2024.3/upgrade-web-application-server/test-upgrade.md" >}}
13+
14+
## Test Executing Production Flows
15+
16+
{{< section "/upgrade/try-it-out/multi-server/test-executing-production-flows.md" >}}
17+
18+
[Application Servers and Load Balancer Upgrade]: {{< url path="Cortex.Guides.UpgradeGuides.UpgradeCortex.2024_1to2024_3.MultipleServerWithHA.UpgradeApplicationAndLoadBalancerServers" >}}
19+
[Web Application Server Upgrade]: {{< url path="Cortex.Guides.UpgradeGuides.UpgradeCortex.2024_1to2024_3.MultipleServerWithHA.UpgradeWebApplicationServer" >}}
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
---
2+
title: "Upgrade Application Servers and Load Balancer"
3+
linkTitle: "Upgrade Application Servers and Load Balancer"
4+
description: "Information about upgrading the Application Servers and Load Balancer Server."
5+
weight: 30
6+
---
7+
8+
# {{< param title >}}
9+
10+
This guide describes how to upgrade the Application Servers and Load Balancer Server from 2024.1 to 2024.3.
11+
12+
## Make Installation Artefacts Available
13+
14+
1. Choose one of the Application Servers to be used to perform the upgrade from, and copy the following artefacts to a folder on it:
15+
* Cortex Innovation 2024.3 - App Server Install Scripts.zip
16+
* Cortex Innovation 2024.3 - App Services.zip
17+
* Cortex Innovation 2024.3 - Block Packages.zip
18+
19+
1. Extract the `Cortex Innovation 2024.3 - App Server Install Scripts.zip` file to a folder with the same name.
20+
21+
## Configure Upgrade Script
22+
23+
1. In the `Cortex Innovation 2024.3 - App Server Install Scripts\Upgrade Application Server` folder, locate the `Cortex.Innovation.Upgrade.ps1` script and open it with a text editor.
24+
1. Configure the script, changing the parameters according to the details given below:
25+
26+
```powershell
27+
.\Cortex.Upgrade.ps1 `
28+
-AppServicesPath "C:\Install\Cortex Innovation 2024.3 - App Services.zip" `
29+
-BlockPackagesPath "C:\Install\Cortex Innovation 2024.3 - Block Packages.zip" `
30+
-ApplicationServerIPv4Addresses @("192.168.1.1, 192.168.1.2, 192.168.1.3") `
31+
-LoadBalancerServerIPv4Address "192.168.1.4" `
32+
-Credential $Credential `
33+
-AcceptEULA:$AcceptEULA `
34+
*>&1 | Tee-Object -FilePath "cortex-ha-upgrade-log.txt"
35+
```
36+
37+
| Name | Description |
38+
|----------------------------------------------|-------------|
39+
|`AppServicesPath` | Configure this value with the location of the Application Services zip file on the Application Server being used for the upgrade. |
40+
|`BlockPackagesPath` | Configure this value with the location of the Block Packages zip file on the Application Server being used for the upgrade. |
41+
|`ApplicationServerIPv4Addresses` | The IPv4 addresses of the Application Servers. The first of these must be the Application Server being used for the upgrade.|
42+
|`LoadBalancerServerIPv4Address` | The IPv4 address of the Load Balancer Server. If the built-in load balancer is not being used, this should be removed.|
43+
|`Credential` | The credentials of the user which will be used to perform remote operations on the Application Servers. It must be a domain user that is a member of the local Administrators group on all servers.<br><br>This does not need to be changed, a prompt will appear to enter this information when the script is run. |
44+
|`AcceptEULA` | This does not need to be changed, the EULA will be accepted at a later stage. |
45+
|`FilePath` | The filename that upgrade logs are written to. If this should be written to a different location than where the installation files are then a full path should be specified. |
46+
47+
1. Save and close `Cortex.Innovation.Upgrade.ps1`.
48+
49+
## Run Upgrade Script
50+
51+
{{< section "/upgrade/2024.3/upgrade-application-server/multi-server/run-upgrade-script.md" >}}
52+
53+
## Check Application Services
54+
55+
{{< section "/upgrade/upgrade-application-server/multi-server/check-application-services.md" >}}
56+
57+
## Preserve installation files
58+
59+
{{< section "/preserve-installation-files.md" >}}
60+
61+
## Next Steps?
62+
63+
1. [Upgrade Web Application Server][]
64+
65+
[Upgrade Web Application Server]: {{< url path="Cortex.Guides.UpgradeGuides.UpgradeCortex.2024_1to2024_3.MultipleServerWithHA.UpgradeWebApplicationServer" >}}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: "Upgrade the Web Application Server"
3+
linkTitle: "Upgrade Web Application Server"
4+
description: "Information about upgrading the Web Application Server."
5+
weight: 40
6+
---
7+
8+
This guide describes how to upgrade the Web Application Server. Please ensure that [Upgrade Application Servers and Load Balancer][] has been completed before starting this installation. These steps assume that the v2024.1 version of Gateway and its prerequisites have already been installed.
9+
10+
[Upgrade Application Servers and Load Balancer]: {{< url path="Cortex.Guides.UpgradeGuides.UpgradeCortex.2024_1to2024_3.MultipleServerWithHA.UpgradeApplicationAndLoadBalancerServers" >}}
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
title: "Prerequisites"
3+
linkTitle: "Prerequisites"
4+
description: "Information about performing the prerequisities for the Upgrade of the Web Application Server."
5+
weight: 10
6+
---
7+
8+
# {{% param title %}}
9+
10+
Please ensure that [Upgrade Application Servers and Load Balancer][] has been completed before starting this installation. These steps assume that the v2024.1 version of Gateway and its prerequisites have already been installed.
11+
12+
## Make Installation Artefacts Available
13+
14+
1. Copy the following artefacts to a folder on the machine:
15+
16+
* Cortex Innovation 2024.3 - App Services.zip
17+
* Cortex Innovation 2024.3 - App Server Install Scripts.zip
18+
* Cortex Innovation 2024.3 - Block Packages.zip
19+
* Cortex Innovation 2024.3 - Gateway.zip
20+
* Cortex Innovation 2024.3 - Web App Server Install Scripts.zip
21+
22+
1. Extract the `Cortex Innovation 2024.3 - App Server Install Scripts.zip` file to a folder with the same name.
23+
1. Extract the `Cortex Innovation 2024.3 - Web App Server Install Scripts.zip` zip file to a folder with the same name.
24+
25+
## Next Steps?
26+
27+
1. [Upgrade Flow Debugger][]
28+
29+
[Upgrade Application Servers and Load Balancer]: {{< url path="Cortex.Guides.UpgradeGuides.UpgradeCortex.2024_1to2024_3.MultipleServerWithHA.UpgradeApplicationAndLoadBalancerServers" >}}
30+
[Upgrade Flow Debugger]: {{< url path="Cortex.Guides.UpgradeGuides.UpgradeCortex.2024_1to2024_3.MultipleServerWithHA.UpgradeDebugger" >}}
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
title: "Upgrade Flow Debugger"
3+
linkTitle: "Upgrade Flow Debugger"
4+
description: "Information about upgrading the Flow Debugger."
5+
weight: 30
6+
---
7+
8+
# {{< param title >}}
9+
10+
This guide describes how to upgrade the Flow Debugger on the Web Application Server from 2024.1 to 2024.3.
11+
12+
## Configure Upgrade Script
13+
14+
{{< section "/upgrade/2024.3/upgrade-application-server/single-server/configure-upgrade-script.md" >}}
15+
16+
## Run Upgrade Script
17+
18+
{{< section "/upgrade/2024.3/upgrade-application-server/single-server/run-upgrade-script.md">}}
19+
20+
## Check Application Services
21+
22+
{{< section "/upgrade/upgrade-application-server/single-server/check-application-services.md">}}
23+
24+
## Preserve installation files
25+
26+
{{< section "/preserve-installation-files.md">}}
27+
28+
## Next Steps?
29+
30+
1. [Upgrade Gateway][]
31+
32+
[Upgrade Gateway]: {{< url path="Cortex.Guides.UpgradeGuides.UpgradeCortex.2024_1to2024_3.MultipleServerWithHA.UpgradeGateway" >}}
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
title: "Upgrade Gateway"
3+
linkTitle: "Upgrade Gateway"
4+
description: "Information about upgrading {{% ctx %}} Gateway from 2024.1 to 2024.3."
5+
weight: 30
6+
---
7+
8+
# {{% param title %}}
9+
10+
This guide describes how to upgrade {{% ctx %}} Gateway from 2024.1 to 2024.3. Please ensure that the [Flow Debugger upgrade][] has been completed before starting this upgrade.
11+
12+
## Configure Upgrade Script
13+
14+
{{< section "/upgrade/2024.3/upgrade-web-application-server/configure-gateway-script.md" >}}
15+
16+
## Run Upgrade Script
17+
18+
{{< section "/upgrade/2024.3/upgrade-web-application-server/run-gateway-script.md" >}}
19+
20+
## Preserve installation files
21+
22+
{{< section "/preserve-installation-files.md" >}}
23+
24+
## Next Steps?
25+
26+
1. [Try It Out][]
27+
28+
[Flow Debugger upgrade]: {{< url path="Cortex.Guides.UpgradeGuides.UpgradeCortex.2024_1to2024_3.MultipleServerWithHA.UpgradeDebugger" >}}
29+
[Try It Out]: {{< url path="Cortex.Guides.UpgradeGuides.UpgradeCortex.2024_1to2024_3.MultipleServerWithHA.TryItOut" >}}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: "Single Server - Without HA"
3+
linkTitle: "Single Server - Without HA"
4+
description: "Upgrade instructions for a single on-premise server without high availability (HA)."
5+
weight: 500
6+
---
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: "Try it out"
3+
linkTitle: "Try it out"
4+
description: "Information about trying out {{% ctx %}} after upgrade."
5+
weight: 60
6+
---
7+
8+
# {{% param title %}}
9+
10+
This guide describes how to try out an upgraded {{% ctx %}} to make sure it is working. Please ensure that both the [Application Server Upgrade][] and [Web Application Server Upgrade][] has been completed before taking these steps.
11+
12+
{{< section "/upgrade/2024.3/upgrade-web-application-server/test-upgrade.md" >}}
13+
14+
## Test Executing Production Flows
15+
16+
{{< section "/upgrade/try-it-out/single-server/test-executing-production-flows.md" >}}
17+
18+
[Application Server Upgrade]: {{< url path="Cortex.Guides.UpgradeGuides.UpgradeCortex.2024_1to2024_3.SingleServerWithoutHA.UpgradeApplicationServer" >}}
19+
[Web Application Server Upgrade]: {{< url path="Cortex.Guides.UpgradeGuides.UpgradeCortex.2024_1to2024_3.SingleServerWithoutHA.UpgradeWebApplicationServer" >}}

0 commit comments

Comments
 (0)