zoukankan      html  css  js  c++  java
  • You have a private key that corresponds to this certificate but CryptAcquireCertificatePrivateKey failed.

    You have a private key that corresponds to this certificate but CryptAcquireCertificatePrivateKey failed.

    https://github.com/jexuswebserver/JexusManager/blob/0d4a33d5247557f103887a7ef3e4403cf48627be/JexusManager/Features/Main/SslDiagDialog.cs#L207

    https://github.com/microsoft/service-fabric/issues/773

    It appears there may be 2 issues here:

    • the certificate's private key is not ACL'd to NetworkService; to fix this, please open the Management Console (start -> run -> mmc), navigate to 'Local Computer Certificates' (file -> add snap-in -> certificates, local computer) and examine the private key access list (right click on the certificate, 'All tasks' -> Manage private key..). If NetworkService is not listed: Add -> %computername%Network Service -> 'check', followed by ok. (You may need to replace %computername% with the actual host name.)

    • the certificate is issued by an unsupported provider. The error (0x80090014/NTE_BAD_PROV_TYPE) indicates that the certificate was issued by a CNG key provider, which the SF runtime does not currently support. Note that ACLing errors are not fatal, and should not be the cause of the cluster's failure to start.

    To confirm that is the case, please run the following, from a PowerShell prompt:
    cd Cert:LocalMachineMy
    certutil -v -store my | findstr -i provider

    If the output contains something like this:
    Provider = Microsoft Software Key Storage Provider
    then indeed this is a CNG certificate (issued with a Key Storage Provider).

    I presume the certificate was created with the New-SelfSignedCertificate PowerShell cmdlet, which, unless otherwise specified, will use a CNG provider. If that is the case, and it is possible for you to create another certificate to be used for this cluster, you may try the following:

    New-SelfSignedCertificate -NotBefore '' -NotAfter '' -DnsName -CertStoreLocation Cert:LocalMachineMy -Provider "Microsoft Enhanced RSA and AES Cryptographic Provider" -KeyExportPolicy ExportableEncrypted -Type Custom -Subject ""

    Note this is just an example - the complete list of Crypto API Cryptographic Service Providers can be found here.

    We are addressing this issue in an upcoming release.
    Thanks.

  • 相关阅读:
    hdu 1873 看病要排队
    母函数详解
    【RDMA】无损网络和PFC(基于优先级的流量控制)
    图解Linux网络包接收过程
    结对编程 <==> 断背山?
    CMPP和SMPP协议比较
    Berkerly DB、SQL Server的性能比较
    使用Berkeley DB遇到问题了
    重新学习C语言
    超长短信的处理办法
  • 原文地址:https://www.cnblogs.com/chucklu/p/15242285.html
Copyright © 2011-2022 走看看