Skip to content

Commit 8287989

Browse files
committed
Reverting changes
1 parent fab86de commit 8287989

1 file changed

Lines changed: 7 additions & 19 deletions

File tree

articles/sap/center-sap-solutions/quickstart-create-distributed-non-high-availability.md

Lines changed: 7 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,17 @@ ms.subservice: center-sap-solutions
66
ms.custom: devx-track-azurepowershell
77
ms.topic: quickstart
88
ms.date: 05/04/2023
9-
ms.author: sagarkeswani
10-
author: sagarkeswani
9+
ms.author:
10+
author:
1111
#Customer intent: As a developer, I want to create a distributed non-HA SAP system so that I can use the system with Azure Center for SAP solutions.
1212
# Customer intent: As a developer, I want to deploy a distributed non-high-availability SAP system in Azure using PowerShell, so that I can leverage Azure's infrastructure for my SAP applications.
1313
---
14-
# Quickstart: Create infrastructure for a distributed non-high-availability SAP system with *Azure Center for SAP solutions*
14+
15+
# Quickstart: Create infrastructure for a distributed non-high-availability SAP system with *Azure Center for SAP solutions*
1516

1617
The [Azure PowerShell AZ](/powershell/azure/new-azureps-module-az) module is used to create and manage Azure resources from the command line or in scripts.
1718

18-
[Azure Center for SAP solutions](overview.md) enables you to deploy and manage SAP systems on Azure. This article shows you how to deploy infrastructure for an SAP system with non highly available (HA) Distributed architecture on Azure with *Azure Center for SAP solutions* using Az PowerShell module. Alternatively, you can deploy SAP systems using the Azure CLI, or in the Azure portal.
19+
[Azure Center for SAP solutions](overview.md) enables you to deploy and manage SAP systems on Azure. This article shows you how to deploy infrastructure for an SAP system with non highly available (HA) Distributed architecture on Azure with *Azure Center for SAP solutions* using Az PowerShell module. Alternatively, you can deploy SAP systems using the Azure CLI, or in the Azure portal.
1920

2021
After you deploy infrastructure and [install SAP software](install-software.md) with *Azure Center for SAP solutions*, you can use its visualization, management and monitoring capabilities through the Azure portal. For example, you can:
2122

@@ -28,24 +29,20 @@ After you deploy infrastructure and [install SAP software](install-software.md)
2829
- View Cost Analysis for the SAP system.
2930

3031
## Prerequisites
31-
3232
- An Azure subscription.
3333
- If you are using Azure Center for SAP solutions for the first time, Register the **Microsoft.Workloads** Resource Provider on the subscription in which you are deploying the SAP system. Use [Register-AzResourceProvider](/powershell/module/az.Resources/Register-azResourceProvider), as follows:
34-
3534
```powershell
3635
Register-AzResourceProvider -ProviderNamespace "Microsoft.Workloads"
3736
```
38-
3937
- An Azure account with **Azure Center for SAP solutions administrator** and **Managed Identity Operator** role access to the subscriptions and resource groups in which you'll create the Virtual Instance for SAP solutions (VIS) resource.
4038
- A **User-assigned managed identity** which has **Azure Center for SAP solutions service role** access on the Subscription or at least all resource groups (Compute, Network,Storage). If you wish to install SAP Software through the Azure Center for SAP solutions, also provide **Reader and Data Access** role to the identity on SAP bits storage account where you would store the SAP Media.
4139
- A [network set up for your infrastructure deployment](prepare-network.md).
4240
- Availability of minimum 4 cores of either Standard_D4ds_v4 or Standard_E4s_v3 SKUS which will be used during Infrastructure deployment and Software Installation
43-
- [Review the quotas for your Azure subscription](/azure/quotas/view-quotas). If the quotas are low, you might need to create a support request before creating your infrastructure deployment. Otherwise, you might experience deployment failures or an **Insufficient quota** error.
41+
- [Review the quotas for your Azure subscription](/azure/quotas/view-quotas). If the quotas are low, you might need to create a support request before creating your infrastructure deployment. Otherwise, you might experience deployment failures or an **Insufficient quota** error.
4442
- Note the SAP Application Performance Standard (SAPS) and database memory size that you need to allow Azure Center for SAP solutions to size your SAP system. If you're not sure, you can also select the VMs. There are:
4543
- A single or cluster of ASCS VMs, which make up a single ASCS instance in the VIS.
4644
- A single or cluster of Database VMs, which make up a single Database instance in the VIS.
4745
- A single Application Server VM, which makes up a single Application instance in the VIS. Depending on the number of Application Servers being deployed or registered, there can be multiple application instances.
48-
4946
- Azure Cloud Shell or Azure PowerShell.
5047
5148
The steps in this quickstart run the Azure PowerShell cmdlets interactively in [Azure Cloud Shell](/azure/cloud-shell/overview). To run the commands in the Cloud Shell, select **Open Cloudshell** at the upper-right corner of a code block. Select **Copy** to copy the code and then paste it into Cloud Shell to run it. You can also run the Cloud Shell from within the Azure portal.
@@ -55,27 +52,18 @@ After you deploy infrastructure and [install SAP software](install-software.md)
5552
If you run PowerShell locally, run `Connect-AzAccount` to connect to Azure.
5653
5754
## Right Size the SAP system you want to deploy
58-
5955
Use [Invoke-AzWorkloadsSapSizingRecommendation](/powershell/module/az.workloads/invoke-azworkloadssapsizingrecommendation) to get SAP system sizing recommendations by providing SAPS input for application tier and memory required for database tier
6056
6157
```powershell
6258
Invoke-AzWorkloadsSapSizingRecommendation -Location eastus -AppLocation eastus -DatabaseType HANA -DbMemory 256 -DeploymentType ThreeTier -Environment NonProd -SapProduct S4HANA -Sap 10000 -DbScaleMethod ScaleUp
6359
```
6460

6561
## Create *json* configuration file
66-
67-
Prepare a *json* file with the payload that will be used for the deployment of SAP system infrastructure. You can make edits in this [sample payload](https://github.com/Azure/Azure-Center-for-SAP-solutions-preview/blob/main/Payload_Samples/CreatePayloadDistributedNon-HA.json) or use the examples listed in the [Rest API documentation](/rest/api/workloads) for Azure Center for SAP solutions
62+
Prepare a *json* file with the payload that will be used for the deployment of SAP system infrastructure. You can make edits in this [sample payload](https://github.com/Azure/Azure-Center-for-SAP-solutions-preview/blob/main/Payload_Samples/CreatePayloadDistributedNon-HA.json) or use the examples listed in the [Rest API documentation](/rest/api/workloads) for Azure Center for SAP solutions
6863

6964
## Deploy infrastructure for your SAP system
70-
7165
Use [New-AzWorkloadsSapVirtualInstance](/powershell/module/az.workloads/new-azworkloadssapvirtualinstance) to deploy infrastructure for your SAP system with Three tier non-HA architecture
7266

7367
```powershell
7468
New-AzWorkloadsSapVirtualInstance -ResourceGroupName 'PowerShell-CLI-TestRG' -Name L46 -Location eastus -Environment 'NonProd' -SapProduct 'S4HANA' -Configuration .\CreatePayload.json -Tag @{k1 = "v1"; k2 = "v2"} -IdentityType 'UserAssigned' -ManagedResourceGroupName "L46-rg" -UserAssignedIdentity @{'/subscriptions/aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e/resourcegroups/SAP-E2ETest-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/E2E-RBAC-MSI'= @{}}
7569
```
76-
77-
78-
## Next steps
79-
In this quickstart, you deployed infrastructure in Azure for an SAP system using Azure Center for SAP solutions. Continue to the next article to learn how to install SAP software on the infrastructure deployed.
80-
> [!div class="nextstepaction"]
81-
> [Install SAP software](install-software.md)

0 commit comments

Comments
 (0)