我想转换p12文件在https://github.com/Alfresco/community-edition/blob/master/projects/repository/config/alfresco/keystore/browser.p12?raw=true所以它可以用在apache2 SSLProxyMachineCertificateFile指令。 我使用它进行了转换
openssl pkcs12 -in browser.p12 -nodes -out alfresco.pem # (password is 'alfresco')
结束了
AH02252: incomplete client cert configured for SSL proxy (missing or encrypted private key?)
当我启动Apache。 据我所知,在pem文件中的密钥不应该encryption,也匹配证书,所以它看起来像一个错误给我。
我正在运行Apache / 2.4.10(ubuntu 14.10)并打开OpenSSL 1.0.1f。
我错过了什么?