Reputation: 3611
I purchased certificate from godaddy and currently I have the following files
I am having a hardtime setting it up in my azure web app, it requires me to upload .pfx (Private Key Certificates)
I tried openssl
openssl pkcs12 -export -out {name}.pfx -inkey generated-private-key.txt in xxx.crt
It says unable to load private key, is there any process needed to create private key using that generated-private-key.txt ?
UPDATE: Resolved the issue using this reference https://medium.com/@joshyates1980/apply-ssl-t0-azure-web-application-8cc72d886993
Upvotes: 0
Views: 4249
Reputation: 28204
You could try the following methods:
With OpenSSL, you could get a similar question from https://sg.godaddy.com/community/SSL-And-Security/Install-Godaddy-SSL-on-IIS-10-Windows-Server-2019/td-p/147344
UTF-8-BOM
to UTF-8
openssl pkcs12 -export -out {name}.pfx -inkey generated-private-key.txt in xxx.crt
Alternatively, Install your certificate in MMC and export the PFX file
Upvotes: 1