I have Used Certgen utility to generate certificates.   Copy the certgen utility on server and generate a ca authority.   Run the below command to generate the ca.   ./certgen ca ca-key.pem ca.pem      Generate the server certificate as below:   ./certgen.sh server ca-key.pem ca.pem      Generated server certs and key. Generated files: key: server_key.pem , cert: server_cert.pem   convert this cert into pkcs format using below command:   openssl pkcs12 -export -in server_cert.pem -inkey server_key.pem -out myserver.  p12 -name "Server"          Create 2 Custom Keystores to store Server and Root Certs on OAM server. You can generate Keystore using Keytool or other tools like Keystore Explorer on windows. Once these Keystores are created put them on OAM server. Below is the command to generate the keystore using keytool:     keytool -genkey -alias mydomain -keyalg RSA -keystore Server.jks -keysize 2048     Login to WebLogic Admin Console.   Navigate to OAM server instance >...
The views expressed on this blog are my own and do not necessarily reflect the views of my employer.