Skip to main content
SnapCenter Software 4.7
本产品推出了新版本。
简体中文版经机器翻译而成,仅供参考。如与英语版出现任何冲突,应以英语版为准。

使用 Windows 主机插件服务配置 CA 证书

贡献者

您应使用 Windows 主机插件服务配置 CA 证书,以激活已安装的数字证书。

在 SnapCenter 服务器以及已部署 CA 证书的所有插件主机上执行以下步骤。

  • 步骤 *

    1. 运行以下命令,删除与 SMCore 默认端口 8145 的现有证书绑定:

      > netsh http delete sslcert ipport=0.0.0.0:_<SMCore Port>

      例如:

       > netsh http delete sslcert ipport=0.0.0.0:8145
      . 运行以下命令,将新安装的证书与 Windows 主机插件服务绑定:

      > $cert = “<certificate thumbprint>

      > $guid = [guid]::NewGuid().ToString("B")

      > netsh http add sslcert ipport=0.0.0.0: <SMCore Port> certhash=$cert appid="$guid"

      例如:

    > $cert = “a909502dd82ae41433e6f83886b00d4277a32a7b”
    > $guid = [guid]::NewGuid().ToString("B")
    > netsh http add sslcert ipport=0.0.0.0:8145 certhash=$cert appid="$guid"