Table of Contents |
---|
...
Info |
---|
This page describes how to use TLS to secure communications between an Abiquo Server |
...
a Remote Services server. |
You can use this configuration whe a Remote Services Server is in a remote datacenter running an Abiquo Remote Services appliance (for instance they might communicate over the Internet). In this case it's advisable to secure your Tomcat communications.and the Abiquo Server will communicate with it over the internet.
Define a new HTTPS connector in remote RS Catalina
...
Code Block |
---|
openssl pkcs12 -export -in myremoters.bcn.abiquo.com.crt -inkey myremoters.bcn.abiquo.com.key -name myremoters.bcn.abiquo.com -out import_cert_key |
Import it into the RS keystore Tomcat is keystore Tomcat is going to use:
Code Block |
---|
keytool -importkeystore -deststorepass changeit -destkeystore remoters.jks -srckeystore import_cert_key -srcstoretype PKCS12 |
...