Adapter for Apache Kafka 9.6 | webMethods Adapter for Apache Kafka Documentation | webMethods Adapter for Apache Kafka Installation and User’s Documentation | Adapter for Apache Kafka Connections | Connecting to SSL Enabled Apache Kafka Cluster
 
Connecting to SSL Enabled Apache Kafka Cluster
When the Kafka cluster is enabled with secured socket layer (SSL)/TLS, the following configurations have to be passed in Producer Connection and Consumer Connection configurations:
*If the client authentication is not required in the Kafka cluster, then the following configurations need to be passed under Other Properties in the Connection Configuration screen.
security.protocol=SSL
ssl.truststore.location=/var/private/ssl/kafka.client.truststore.jks
//above provided is a sample path//
ssl.truststore.password=test1234
//above provided is a sample password//
*If client authentication is required in the Kafka cluster, then the following configurations need be passed under Other Properties in the Connection Configuration screen.
security.protocol=SSL
ssl.truststore.location=/var/private/ssl/kafka.client.truststore.jks
//above provided is a sample path//
ssl.truststore.password=test1234
ssl.keystore.location=/var/private/ssl/Kafka.client.keystore.jks
//above provided is a sample path//
ssl.keystore.password=test1234 //provided is a sample password//
ssl.key.password=test1234 //provided is a sample password//