您可以使用 OpenSSL 工具產生適用於 Windows 或 Linux 的自我簽署的憑證。
必要條件
- 從 https://www.openssl.org/community/binaries.html 下載針對 OpenSSL 的適當安裝程式。使用已下載的 OpenSSL 安裝程式,將其安裝在 Windows 上。
- 編輯 openssl.cfg 檔案以新增其他必要參數。確保
[req]
區段已定義 req_extensions 參數。[req] . . req_extensions=v3_req #
- 為伺服器的主機名稱或 IP 位址新增適當的 [主體別名] 項目,例如 server-01.operationsforlogs.domain。您無法為此主機名稱指定模式。
[v3_req] . . subjectAltName=DNS:server-01.operationsforlogs.domain #subjectAltName=IP:10.27.74.215
程序
結果
系統會建立兩個檔案:server.key 和 server.crt。
- server.key 是新的 PEM 編碼私密金鑰。
- server.crt 是由
server.key
簽署的新 PEM 編碼憑證。