作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
借助 Azure 混合权益 (AHB),现有的本地 SQL Server 许可证可以转换为“Azure SQL 托管实例价格的 40% 折扣”。如果已在没有 AHB 的情况下创建托管实例,如何在现有托管实例上应用 Azure 混合权益?
最佳答案
将托管实例转换为 AHB 的最简单方法是转到 Azure 门户,打开托管实例的详细信息,转到设置/定价层并确认您拥有要使用的有效 SA 许可证。
可以使用 AzureRm.Sql PowerShell 库和 Set-AzureRmSqlManagedInstance 将托管实例的定价转换为 AHB命令:
Set-AzureRmSqlManagedInstance `
-Name $instanceName `
-ResourceGroupName $resourceGroup `
-LicenseType BasePrice
您可以使用 AzureRm 库和 Set-AzureRmResource 代替 AzureRm.Sql命令:
$subId = "70b3d058-a51a-****-****-**********"
$resourceGroup = "my-resource-group"
$instanceName = "my-instance"
Select-AzureRmSubscription -SubscriptionId $subId
$properties = New-Object System.Object
$properties | Add-Member -type NoteProperty -name licenseType -Value BasePrice
Set-AzureRmResource -Properties $properties `
-ResourceName $instanceName `
-ResourceType "Microsoft.SQL/managedInstances" `
-ResourceGroupName $resourceGroup -Force `
-ApiVersion "2015-05-01-preview"
Azure CLI 可用于更新许可证类型 az sql mi update命令:
az sql mi update -g my_res_group -n my-managed-instance --license-type BasePrice
关于azure - 如何将 Azure 混合权益应用于托管实例?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54109283/
我是一名优秀的程序员,十分优秀!