gpt4 book ai didi

azure - 新-AzWebAppSSLBinding : Operation returned an invalid status code 'NotFound'

转载 作者:行者123 更新时间:2023-12-01 21:55:44 25 4
gpt4 key购买 nike

我尝试使用 New-AzWebAppSSLBinding 将 pfx ssl 证书上传并安装到 Azure,但是出现错误:

"New-AzWebAppSSLBinding : Operation returned an invalid status code 'NotFound'".





PSVersion 5.1.14393.2515
PSEdition Desktop
BuildVersion 10.0.14393.2515
CLRVersion 4.0.30319.42000

我能够通过以下方式成功获取有关我的资源的信息:

Get-AzResourceGroup -Name $azResourceGroup
Get-AzWebApp -Name $azWebAppName

通过以下方式成功连接到 SPN 后:

$azpsw = ConvertTo-SecureString $clientSecret -AsPlainText -Force
$pscredential = New-Object System.Management.Automation.PSCredential($appID, $azpsw)
$azConnect = Connect-AzAccount -ServicePrincipal -Credential $pscredential -TenantId $tenantID -Force

我执行以下命令:

New-AzWebAppSSLBinding -ResourceGroupName $azResourceGroup -WebAppName $azWebAppName -Name $azName -CertificateFilePath $azCertPath -CertificatePassword $azCertPsw -Verbose

这会导致错误:

New-AzWebAppSSLBinding : Operation returned an invalid status code 'NotFound'

最佳答案

我能够通过将 -Debug 参数附加到 New-AzWebAppSSLBinding 来解决我的问题。我的主机名与证书主题名称不匹配。

这导致我通过以下方式设置正确的主机名:Set-AzWebApp -ResourceGroupName $azResourceGroup -Name $azWebAppName -HostNames @("server_name.azurewebsites.net","server_name.my.domain.name")

第一个条目必须存在,否则 Azure PS 将引发警告。

我的问题已解决。

关于azure - 新-AzWebAppSSLBinding : Operation returned an invalid status code 'NotFound' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57401917/

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