gpt4 book ai didi

powershell - 未找到 Azure 服务器场

转载 作者:行者123 更新时间:2023-12-03 01:52:54 24 4
gpt4 key购买 nike

我正在尝试通过 powershell 脚本创建一个 azure 网站。托管计划已经创建,我只想向其中添加一个新网站。

我使用的脚本是这样的:

Switch-AzureMode AzureResourceManager

$targetServicePlan = Get-AzureResource -Name my-serviceplan -OutputObjectFormat New

New-AzureResource -Name MyTestSite -Location "West Europe" `
-ResourceGroupName Default-Web-WestEurope `
-ResourceType 'Microsoft.Web/sites' `
-PropertyObject @{"name" = "MyTestSite"; "ServerFarmId" = $targetServicePlan.ResourceId } `
-OutputObjectFormat New

服务器场 ($targetServicePlan) 有一个资源 ID,因此我假设它存在(Azure 门户中也有一个具有此名称的托管计划)。然而,当我尝试创建网站时,出现错误:“未找到名为 my-serviceplan 的服务器场。”

完整的错误是:

New-AzureResource : {"Code":"NotFound","Message":"Server farm with name my-serviceplan not found.","Target":null,"Details":[{"Message":"Server farm with name
my-serviceplan not found."},{"Code":"NotFound"},{"ErrorEntity":{"Code":"NotFound","Message":"Server farm with name my-serviceplan not
found.","ExtendedCode":"11001","MessageTemplate":"Server farm with name {0} not found.","Parameters":["my-serviceplan"],"InnerErrors":null}}],"Innererror":null}
At line:1 char:1
+ New-AzureResource -Name MyTestSite -Location "West Europe" -ResourceGrou ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : CloseError: (:) [New-AzureResource], ErrorResponseMessageException
+ FullyQualifiedErrorId : NotFound,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceCmdlet

我错过了什么?

最佳答案

您的 $targetServicePlan 位于“西欧”吗?如果不是,这可能是导致那个不太有用的错误的原因。

关于powershell - 未找到 Azure 服务器场,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32251648/

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