JIRA Gadget.common.error.500

JIRA Does Not Start after Configuring SSL Due to Unspecified TrustStore or Keystore Path Unable to Connect to SSL Services due to PKIX Path Building Failed sun.security.provider.certpath.SunCertPathBuilderException Test using: Download and import the certificate into the keystore. Test

File checksum on Windows 10

Here is how to obtain the checksum of a file on Windows 10. CertUtil -hashfile <filename.xyz> <hashalgorithm> Hash algorithms: MD2 MD4 MD5 SHA1 SHA256 SHA384 SHA512

IPv6 at Home

I have finally got around to playing with IPv6. With massive thanks to Hurricane Electric internet services offering a free IPv6 tunnel broker service. It’s actually quite frightening just how easy it was to implement and with stateless auto configuration Read More …

Adding JDBC drivers to WildFly

  Create the directory structure: \modules\system\layers\base\com\microsoft\sqljdbc41\main module.xml <?xml version=”1.0″ encoding=”UTF-8″?> <module xmlns=”urn:jboss:module:1.3″ name=”com.microsoft.sqljdbc41″>   <resources>     <resource-root path=”sqljdbc41.jar”/>   </resources>   <dependencies>     <module name=”javax.api”/>     <module name=”javax.transaction.api”/>   </dependencies> </module> Then copy in the jar file sqljdbc41.jar   Create Read More …