Browsed by
Month: November 2017

Wildfly Notes

Wildfly Notes

Everything should be done into your <$JBOSS_HOME>/bin folder: Start Linux: $ ./standalone.sh & Windows: > standalone.bat Stop Linux: $ ./jboss-cli.sh –connect command=:shutdown Windows: > jboss-cli.bat –connect command=:shutdown Restart Linux: $ ./jboss-cli.sh –connect command=:reload Windows: > jboss-cli.bat –connect command=:reload Start in domain mode Linux: $ ./domain.sh & Windows: > domain.bat

Installing Oracle Weblogic

Installing Oracle Weblogic

What is Weblogic? Oracle WebLogic Server is a Java EE 6 compatible application server that is part of Oracle Fusion Middleware suite of products. The WebLogic Server complete implementation of the Java EE 6 specification provides a standard set of APIs for creating distributed Java applications that can access a wide variety of services, such as databases, messaging services and connections to external Enterprise systems. End-user clients can access these applications using Web browser or standalone Java clients. It also…

Read More Read More

KeyTool (Java Keystore SSL)

KeyTool (Java Keystore SSL)

Java SSL (keytool) Import a CA cert into a java keystore keytool -import -file ca-cert.pem -keystore /path/to/keystore -trustcacerts (-trustcacerts is important when adding a CA cert as it will add the CA cert to the keystore trust chain) The root CA cert should be all that’s necessary for Java cert verification; it doesn’t seem to require the intermediate CA certs like OpenSSL does. List the certs in a keystore keytool -list -v -keystore /path/to/keystore     Working with JCE keystores If…

Read More Read More