SnapCenter Software 4.9

to English version

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
  2. 次のコマンドを実行して、新しくインストールした証明書を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: _<SMCore Port>_ certhash=$cert appid="$guid"
Top of Page