vRealize Automation – Change the VAMI certificate
Set the certificate private key password in a shell variable
1INKEY="<<CERT_PASSPHRASE>>"
Get a PFX file from original cert
1openssl pkcs12 -export \ 2 -in <<fqdn>>.crt \ 3 -inkey <<fqdn>>.key \ 4 -certfile ca-root.crt \ 5 -name "rui" \ 6 -passout pass: …
Read More