There are mainly two steps to follow in this process.
- Creating a certificate (mycert.pem) file using wso2carbon.jks
keytool -export -alias wso2carbon -keystore /home/wso2is-5.0.0/repository/resources/security/wso2carbon.jks -storepass wso2carbon -file /home/mycert.pem
- Installing the created certificate (mycert.pem) to the JVM default certificates
keytool -import -alias wso2carbon -file /home/mycert.pem -keystore /home/Software/jdk1.7.0_79/jre/lib/security/cacerts -storepass changeit
By default changeit string is the JVM default store password
(unless you have change it).
(unless you have change it).