Skip to content
wahlbrink edited this page Mar 29, 2013 · 3 revisions

Create a keystore and truststore

See: JSSE Reference Guide

Specify the keystore and truststore

for the pool server and for the client.

For example for the standalone pool:

java -cp "*" \
    -Djavax.net.ssl.keyStore=keystore \
    -Djavax.net.ssl.keyStorePassword=password \
    -Djavax.net.ssl.trustStore=truststore \
    -Djavax.net.ssl.trustStorePassword=trustword \
    de.walware.rj.servi.pool.StandalonePoolServer <id>

Enable SSL connections

When using RServi#getRServi(...) use the prefix ssl: for the pool address.

Clone this wiki locally