Wednesday, July 8, 2015
Friday, May 8, 2015
Installing WSO2 certificate into JVM default certificates in Linux
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).
Tuesday, April 28, 2015
How to quickly access a H2 database
- Download the h2-*.jar from
- Go to the downloaded jar location.
- Open a terminal and run the following command
- java -cp h2*.jar org.h2.tools.Console
- Open a web browser and go to the following url.
- Enter the configurations and connect to the database.
Cheers !!!
Subscribe to:
Posts (Atom)