gpt4 book ai didi

azure - 如何在Azure辅助角色中使用证书?

转载 作者:行者123 更新时间:2023-12-03 06:04:25 26 4
gpt4 key购买 nike

我无法弄清楚这一点。我已将我的证书上传到我需要使用它的角色。

这在我的机器上运行得很好,但在运行时它似乎不适用于辅助角色。

在“安装”此证书之前,我在本地遇到了问题 - 我是否必须使用 Azure 来执行此操作?

有什么建议吗?谢谢!

string certThumbprint = "8B6F1E6FEC6EB1D2EA8E86F78BD0841310BFD1F8";
X509Store certificateStore = new X509Store(StoreName.My, StoreLocation.LocalMachine);
certificateStore.Open(OpenFlags.ReadOnly);
var certs = certificateStore.Certificates.Find(
X509FindType.FindByThumbprint,
certThumbprint, false);

if (certs.Count == 0)
{
Console.WriteLine("Couldn't find the certificate with thumbprint:" + certThumbprint);
return;
}

最佳答案

一些有用的提示:

  • 确保您在提升模式下运行。
  • 确保证书已上传到 LocalMachine\Personal 存储,而不是 CurrentUser\Personal 存储。
  • 确保您已将 .PFX 文件上传到必要的角色,而不是将 .CER 文件上传到管理证书区域。 (您可以远程访问实例以确保证书位于正确的位置)

关于azure - 如何在Azure辅助角色中使用证书?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15396920/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com