如果ADFS服务遇到通信证书问题,可以通过以下步骤进行解决:
Get-AdfsSslCertificate
Remove-AdfsCertificate -CertificateType Service-Communications
Import-AdfsCertificate -FileName [CERTIFICATE FILE] -CertificatePassword (ConvertTo-SecureString [PASSWORD] -AsPlainText -Force)
New-SelfSignedCertificate -DnsName [WEBSERVER FQDN] -CertStoreLocation Cert:\LocalMachine\My
Import-AdfsCertificate -FileName [CERTIFICATE FILE] -CertificatePassword (ConvertTo-SecureString [PASSWORD] -AsPlainText -Force)
Restart-Service adfssrv
注意:这些步骤可能需要在ADFS服务所在的计算机上运行。
上一篇:ADFS服务器,允许跨域
下一篇:ADFS服务通信证书问题