我有以下问题。我创建了一个自签名证书,以便通过SSL连接到LDAP\AD。当我用自民党测试它时,会提示我连接一张智能卡。在我取消几次之后,连接就建立了。
事件查看器生成以下错误:
Log Name: System
Source: Schannel
Date: 7/19/2017 12:58:36 PM
Event ID: 36870
Task Category: None
Level: Error
Keywords:
User: SYSTEM
Computer: XXXXXXXX
Description:
A fatal error occurred when attempting to access the SSL client credential private key. The error code returned from the cryptographic module is 0x8009030D. The internal error state is 10003.
Event Xml:
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="Schannel" Guid="{1F678132-5938-4686-9FDC-C8FF68F15C85}" />
<EventID>36870</EventID>
<Version>0</Version>
<Level>2</Level>
<Task>0</Task>
<Opcode>0</Opcode>
<Keywords>0x8000000000000000</Keywords>
<TimeCreated SystemTime="2017-07-19T10:58:36.554301600Z" />
<EventRecordID>590857</EventRecordID>
<Correlation />
<Execution ProcessID="668" ThreadID="2672" />
<Channel>System</Channel>
<Computer>XXXXXXXXXX</Computer>
<Security UserID="S-1-5-18" />
</System>
<EventData>
<Data Name="Type">client</Data>
<Data Name="ErrorCode">0x8009030d</Data>
<Data Name="ErrorStatus">10003</Data>
</EventData>
</Event>发布于 2018-05-02 19:53:42
刚刚出现了完全相同的问题:检查本地用户的个人证书存储。其中很可能有客户端身份验证证书。
在我的例子中,安装了我的笔记本客户端身份验证证书。我的RDP客户端被自动配置为将智能卡“本地资源”映射到Azure中的VM,这将导致我的本地证书被复制到我的VM中。取消智能卡映射并从服务器删除证书后,问题就解决了。
https://serverfault.com/questions/863014
复制相似问题