Reputation: 175
I am trying to setup secure nifi on https for that exported certificate from aws acm and following below document to get pkc12, keystore.jks and trustore.jks format.
When I run a below command it asked for the password provided the password that I set at the time of exporting the file but still say unable to load private key.
[vagrant@vagrant nifi-toolkit-1.11.4]$ openssl pkcs12 -export -out keystore.p12 -in private-key.txt unable to load private key
Someone suggest how to use aws certificate in nifi.
Upvotes: 1
Views: 1064
Reputation: 175
Acm export certificate provide following file:
For nifi you need three file:
Use following command to get p12 And jks file :
Note provide the password specified at time of downloading the certificate.
Upvotes: 2