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 MoreVMware vCloud Director – Change SSL certificates
The following procedure is a self-reminder of How-To replace the certificates of a VMware vCloud Director deployment.
Prepare informations
Here is a configuration sample for a single cell deployment. Change settings according to your needs:
If you are using multi-cells deployment, I stronlgy recommend you to extend …
Read MoreExport the SSL certificate(s) of a server to a
.pem
file:1TARGET_HOST="fqdn_of_target_host" 2TARGET_PORT="443" 3openssl s_client -showcerts -connect $TARGET_HOST:$TARGET_PORT </dev/null 2>/dev/null|openssl x509 -outform PEM > $TARGET_HOST.pem
Read MoreWhen you install a VMware vCloud Director instance, it comes with an embedded JRE (Java Runtime Environment). For example, vCloud Director includes JRE 1.8.0_121 :
1$VCLOUD_HOME/jre/bin/java -version 2java version "1.8.0_121" 3Java(TM) SE Runtime Environment (build 1.8.0_121-b13) 4Java HotSpot(TM) 64-Bit Server …
Read More