I'm using SIF 1.2.0 (with Sitecore Fundamentals 1.1.0) and the Sitecore 9 install is failing on the CreateBindingsWithDevelopmentThumbprint : AddWebFeatureSSL.
from the log:
[------------------ CreateBindingsWithDevelopmentThumprint : AddWebFeatureSSL ----------------------------------------]
VERBOSE: Resolving ConfigFunction extension 'joinpath'
VERBOSE: Resolved 'Invoke-JoinPathConfigFunction'
VERBOSE: Invoke-JoinPathConfigFunction
VERBOSE: Joining: C:\inetpub\wwwroot\siteName\App_Data
VERBOSE: Result: C:\inetpub\wwwroot\siteName\App_Data
VERBOSE: Performing the operation "Add-WebFeatureSSL" on target "siteName".
VERBOSE: Test-WebFeatureSSL: Failed to locate certificate for DnsName siteName in Cert:\LocalMachine\My
VERBOSE: Searching certificates in Cert:\LocalMachine\Root for Name DO_NOT_TRUST_SitecoreFundamentalsRoot
VERBOSE: Success, found certificate for Name DO_NOT_TRUST_SitecoreFundamentalsRoot (thumbprint: 2288AA499893E9F947EA9137A680F809808E1710)
VERBOSE: Add-WebFeatureSSL: Found existing certificate for 'DO_NOT_TRUST_SitecoreFundamentalsRoot' in Cert:\LocalMachine\Root, skipping
VERBOSE: Add-WebFeatureSSL: Creating signed certificate
VERBOSE: Searching certificates in Cert:\LocalMachine\My for Name siteName
VERBOSE: Failed to find certificate with Name siteName
VERBOSE: New-SignedCertificate: Create a signed certificate for 'siteName' VERBOSE: New-SignedCertificate: Using PKI parameters for Windows Server 2016 and Windows 10
Command start time: 20180329151332
PS>TerminatingError(New-SelfSignedCertificate): "CertEnroll::CSignerCertificate::Initialize: Cannot find object or property. 0x80092004 (-2146885628 CRYPT_E_NOT_FOUND)"
TerminatingError(New-SelfSignedCertificate): "CertEnroll::CSignerCertificate::Initialize: Cannot find object or property. 0x80092004 (-2146885628 CRYPT_E_NOT_FOUND)"
TerminatingError(New-SelfSignedCertificate): "CertEnroll::CSignerCertificate::Initialize: Cannot find object or property. 0x80092004 (-2146885628 CRYPT_E_NOT_FOUND)"
Install-SitecoreConfiguration : CertEnroll::CSignerCertificate::Initialize: Cannot find object or property. 0x80092004 (-2146885628 CRYPT_E_NOT_FOUND) At C:\SC9\Configurations\Install.ps1:38 char:1 + Install-SitecoreConfiguration @sitecoreParams -Verbose
Install-SitecoreConfiguration @sitecoreParams -Verbose
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The error is related to using root certificate, in your case DO_NOT_TRUST_SitecoreFundamentalsRoot, that has been invalidated. Some of the reasons causing the cert to be invalid:
You will need to re-generate it and together with it also all xconnect certificates.
Make sure you go to Trusted Root Certification Authorities/Certificates and delete all Sitecore certificates. Then run install script again. This fixed it for me.
For some reason system is not able to create certificate.
Below steps have helped me to resolve this same issue.
User contributions licensed under CC BY-SA 3.0