gpt4 book ai didi

powershell - 使用 Powershell 更新 Azure 网站实例大小(小、中、大)

转载 作者:行者123 更新时间:2023-12-03 00:18:23 24 4
gpt4 key购买 nike

有没有办法使用 PowerShell 缩放 Azure 网站实例大小(不是实例计数)?我还没找到路。

我知道可以使用 Azure CLI 或门户来完成此操作,但我希望能够使用 PowerShell 来完成此操作。这可能吗?

我想要更新现有网站实例大小,而不是创建新网站。

最佳答案

是的,您首先需要知道您的网站所属的资源组和虚拟主机计划的名称,您可以从 new Azure Portal 获取该名称。 。然后您可以将工作线程大小更改为 0(小)、1(中)或 2(大)。

Switch-AzureMode AzureResourceManager

$resourceGroup = "MyResourceGroup"
$webHostingPlan = "MyWebHostingPlan"

$whp = Get-AzureResource `
-Name $webHostingPlan `
-ResourceGroupName $resourceGroup `
-ResourceType "Microsoft.Web/serverFarms" `
-ApiVersion 2014-04-01

$newWorkerSize = 1
$whp.Properties.workerSize = $newWorkerSize
$whp.Properties.workerSizeId = $newWorkerSize

Set-AzureResource `
-Name $webHostingPlan `
-ResourceGroupName $resourceGroup `
-ResourceType "Microsoft.Web/serverFarms" `
-ApiVersion 2014-04-01 `
-PropertyObject $whp.Properties

关于powershell - 使用 Powershell 更新 Azure 网站实例大小(小、中、大),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26935327/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com