(imported topic written by SystemAdmin)
To get enable SSL support for my web reports, I have follow the instructions as described in the technote, Setup for SSL on Tivoli Endpoint Manager Web Reports, (http://www-01.ibm.com/support/docview.wss?uid=swg21505848)
But, it is impossbile to get to work properly, even I succed to configure SSL for my SUA reports, (Software Usage Analysis.
In my case, I reques a Certificate from a Certificate Authority, which in my case is GoDaddy. The company does not issue the certificate in PKCS12 format, but in a CRT format.
Does anyone have work around to get convert the certificate into PKCS12 format?
When I check the following links, there is examples of how to convert the certificat format:
Link:
The Most Common OpenSSL Commands
- Convert the CRT format to pfx/p12
Convert a PEM certificate file and a private key to PKCS#12 (.pfx .p12)
openssl pkcs12 -export -out certificate.pfx -inkey privateKey.key -in certificate.crt -certfile CACert.crt
To get the CACert.crt, I downloaded it from Link:
Go Daddy Certificate Chain
https://certs.godaddy.com/anonymous/repository.seam
- Convert PKCS#12 (.pfx .p12) to PEM containing both private key and certificates
openssl pkcs12 -in keyStore.pfx -out keyStore.pem -nodes
But, how do I convert the keyfile.pem described in the technote to the .key format?
There is somthing about different key-formats at this page, Link:
Key Formats PKCS#8 and PKCS#12 and Migration