How to configure self signed SSL certificate in Weblogic 12c
I have included all the commands that I executed during this video:
keytool -genkey -alias mine -keyalg RSA -keysize 2048 -sigalg SHA256withRSA -validity 10000 -keypass password1 -keystore identity.jks -storepass password1
keytool -exportcert -alias mine -file root.cer -keystore identity.jks -storepass password1
keytool -importcert -alias mine -file root.cer -keystore trust.jks -storepass password1
keytool -importcert -alias mine -keystore C:\Java\jre_8u101_64b\lib\security\cacerts -file root.cer -storepass changeit