Skip to content

Commit 39b6232

Browse files
Merge pull request #218054 from MSSedusch/aem-publisher
SAP: Add publisher and type information for VM Extension for SAP
2 parents 9b48f94 + 08a0ac8 commit 39b6232

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

articles/virtual-machines/workloads/sap/vm-extension-for-sap-new.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,38 @@ The new VM Extension for SAP uses a managed identity that is assigned to the VM
133133
1. Restart SAP Host Agent
134134

135135
Log on to the virtual machine on which you enabled the VM Extension for SAP and restart the SAP Host Agent if it was already installed. SAP Host Agent does not use the VM Extension until it is restarted. It currently cannot detect that an extension was installed after it was started.
136+
137+
## <a name="ba74712c-4b1f-44c2-9412-de101dbb1ccc"></a>Manually configure the Azure VM extension for SAP solutions
138+
139+
If you want to use Azure Resource Manager, Terraform or other tools to deploy the VM Extension for SAP, please use the following publisher and extension type:
140+
141+
For Linux:
142+
* **Publisher**: Microsoft.AzureCAT.AzureEnhancedMonitoring
143+
* **Extension Type**: MonitorX64Linux
144+
* **Version**: 1.*
145+
146+
For Windows:
147+
* **Publisher**: Microsoft.AzureCAT.AzureEnhancedMonitoring
148+
* **Extension Type**: MonitorX64Windows
149+
* **Version**: 1.*
150+
151+
If you want to disable automatic updates for the VM extension or want to deploy a spefici version of the extension, you can retrieve the available versions with Azure CLI or Azure PowerShell.
152+
153+
**Azure PowerShell**
154+
```powershell
155+
# Windows
156+
Get-AzVMExtensionImage -Location westeurope -PublisherName Microsoft.AzureCAT.AzureEnhancedMonitoring -Type MonitorX64Windows
157+
# Linux
158+
Get-AzVMExtensionImage -Location westeurope -PublisherName Microsoft.AzureCAT.AzureEnhancedMonitoring -Type MonitorX64Linux
159+
```
160+
161+
**Azure CLI**
162+
```azurecli
163+
# Windows
164+
az vm extension image list --location westeurope --publisher Microsoft.AzureCAT.AzureEnhancedMonitoring --name MonitorX64Windows
165+
# Linux
166+
az vm extension image list --location westeurope --publisher Microsoft.AzureCAT.AzureEnhancedMonitoring --name MonitorX64Linux
167+
```
136168

137169
## <a name="5774c1db-1d3c-4b34-8448-3afd0b0f18ab"></a>Readiness check
138170

0 commit comments

Comments
 (0)