forked from radargun/radargun
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
How to configure a secured hotrod connection
- Loading branch information
1 parent
6de3e96
commit ca49821
Showing
3 changed files
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Example configuration to connect to an authenticated cluster with encryption enabled (SSL channel). | ||
# See the available properties here: https://docs.jboss.org/infinispan/14.0/apidocs/org/infinispan/client/hotrod/configuration/package-summary.html | ||
infinispan.client.hotrod.auth_username=yourusername | ||
infinispan.client.hotrod.auth_password=thepassword | ||
infinispan.client.hotrod.auth_realm=default | ||
infinispan.client.hotrod.sasl_mechanism=SCRAM-SHA-512 | ||
infinispan.client.hotrod.trust_store_file_name=/opt/radargun-configs/truststore.jks | ||
infinispan.client.hotrod.trust_store_type=JKS | ||
infinispan.client.hotrod.trust_store_password=password |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters