Skip to content

Using Client to Node SSL

Christopher Bradford edited this page Oct 17, 2018 · 3 revisions

SSL Connections are auto configured based on standard Java Opt parameters passed during application runtime and follows the DataStax Java drivers .withSsl() function if javax.net.ssl.trustStore is present in the JAVA_OPTS.

For more on the DataStax Drivers SSL methods and usage see: http://docs.datastax.com/en/developer/java-driver/3.3/manual/ssl/

Example Usage

JAVA_OPTS="-Djavax.net.ssl.trustStore=[trustStore] -Djavax.net.ssl.trustStorePassword=[trustStorePassword]" ./gatling-dse-sims run [Simulation]

If you need a specific SSL cipher or method that cannot be done using a standard Java trust store and password see Using Custom ClusterBuilder Settings