- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试使用 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/
我尝试使用 New-AzWebAppSSLBinding 将 pfx ssl 证书上传并安装到 Azure,但是出现错误: "New-AzWebAppSSLBinding : Operation re
我尝试使用 New-AzWebAppSSLBinding 将 pfx ssl 证书上传并安装到 Azure,但是出现错误: "New-AzWebAppSSLBinding : Operation re
我是一名优秀的程序员,十分优秀!