如何将证书与密钥结合并输出 pem 文件?
How to combine certificate with key and output pem file?
我已经配置了 kurento 媒体服务器,但是对于 SSL 部分,它需要 pem 格式的证书+密钥以及密码。问题是我有
1. ca_bundle.crt
2. certificate.crt
3. private_key.key
现在我如何将它们转换为有效的证书+key.pem 以便 kurento 媒体服务器可以访问它?
我使用 openssl 工具 openssl x509 -in cert.crt -out cert.pem
仅将 certificate.crt 转换为 certificate.pem
但还是不行。我已经按照 kurento 指南生成了一个自签名证书,它可以工作,但是是的,那里没有绿色印章,所以我在网上买了一个证书,但似乎无法让它工作。这是 kurento 的自签名证书指南。 Guide for certificate
任何帮助将不胜感激。
改用这个
openssl x509 -inform DER -in cert.crt -out cert.pem -text
我已经配置了 kurento 媒体服务器,但是对于 SSL 部分,它需要 pem 格式的证书+密钥以及密码。问题是我有
1. ca_bundle.crt
2. certificate.crt
3. private_key.key
现在我如何将它们转换为有效的证书+key.pem 以便 kurento 媒体服务器可以访问它?
我使用 openssl 工具 openssl x509 -in cert.crt -out cert.pem
但还是不行。我已经按照 kurento 指南生成了一个自签名证书,它可以工作,但是是的,那里没有绿色印章,所以我在网上买了一个证书,但似乎无法让它工作。这是 kurento 的自签名证书指南。 Guide for certificate
任何帮助将不胜感激。
改用这个
openssl x509 -inform DER -in cert.crt -out cert.pem -text