Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

397 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Reedelk Module REST

REST components and connectors for Reedelk Integration Platform: https://www.reedelk.com/documentation

Creating a test only SSL Certificate

  • Create a certificate with SelfSignedCertificateBuilder
  • cacerts file (stores the certificates) is in the Java Home (e.g /Library/Java/JavaVirtualMachines/jdk1.8.0_66.jdk/Contents/Home/jre/lib/security)
  • List certificates: keytool -list -keystore cacerts
  • Delete certificate (by given alias): sudo keytool -delete -alias reedelktest -keystore cacerts
  • Add certificate (with alias): sudo keytool -import -trustcacerts -file /Users/username/Desktop/mycert.crt -alias localhost -keystore cacerts