Created 05-24-2017 01:56 PM
I want to set up Kafka like so:
SASL_SSL://locahost:9092,SSL://localhost,9093
Where the keystore's and truststore's are different for each endpoint.
Is this possible at the moment?
Created 05-24-2017 03:42 PM
From version 0.10.2.0 it is supported to use different keystores
You need to set config:
listener.name.<CLIENTNAME IN LOWERCASE>.ssl.keystore.location
If this client does not defined kafka will fallback to the default config:
ssl.keystore.location
Created 05-24-2017 03:42 PM
From version 0.10.2.0 it is supported to use different keystores
You need to set config:
listener.name.<CLIENTNAME IN LOWERCASE>.ssl.keystore.location
If this client does not defined kafka will fallback to the default config:
ssl.keystore.location
Created 05-24-2017 07:56 PM
Perfect thanks!