Connect to Apache Kafka® cluster using SASL protocol
This section provides information on connecting Klaw to an Apache Kafka cluster using SSL protocol.
Prerequisite
- Set up the connection between the Klaw APIs (Klaw Core API and Klaw Cluster
API), see
klaw-core-with-clusterapi
. This involves configuring theklaw.clusterapi.url
setting in the Klaw UI and testing the connectivity to ensure the two APIs can communicate.
Configure and connect using SASL protocol
Follow the steps below to configure and connect to an Apache Kafka cluster in Klaw using SASL_SSL protocol:
-
In the Klaw web interface, navigate to Environments, and click Clusters.
-
On the Clusters page, click Add Cluster.
-
On the Add Kafka cluster page, enter the following details:
- Cluster Type: Select Kafka from the drop-down list
- Cluster Name: Provide a name for the cluster
- Protocol: Select SASL_SSL protocol for your cluster
- Kafka Flavor: Select Apache Kafka as the flavor
- Bootstrap server: Enter the bootstrap server details for an Apache Kafka cluster.
-
Click Save.
-
Add the cluster to the preferred environment. Click Environments from the Environments drop-down menu.
-
Click Add Environment and enter the details to add your Apache Kafka environment.
-
Enter an environment name, select the added cluster from the drop-down list, and configure partitions, replication factor, and tenant (set to default).
-
Copy the Cluster ID from the Clusters page using the copy icon that is available on the right-hand side of each cluster row.
-
Open the
application.properties
file located in thecluster-api
directory. -
Depending on your SASL mechanism, copy one of the below properties, replace
clusterid
with the copied cluster id, and save theapplication.properties
file.2a3d24b (Fix markdownlint errors and adapt config.)
clusterid.kafkasasl.jaasconfig.plain=org.apache.kafka.common.security.plain.PlainLoginModule
required username='kwuser' password='kwuser-secret';
clusterid.kafkasasl.jaasconfig.scram=org.apache.kafka.common.security.scram.ScramLoginModule
required username='kwuser' password='kwuser-secret';
clusterid.kafkasasl.jaasconfig.gssapi=com.sun.security.auth.module.Krb5LoginModule
required useKeyTab=true storeKey=true
keyTab=\"/location/kafka_client.keytab\"
<principal=%22kafkaclient1@EXAMPLE.COM>\"; -
Add relevant ACLs on the Apache Kafka cluster (IP/Principal based) to authorize Klaw to create topics and ACLs. This can be done using: :
--operation All --clusterCluster:kafka-cluster --topic "*"
-
Re-deploy the Klaw Cluster API with the updated configuration. This will apply the changes and enable Klaw to connect to the Apache Kafka cluster using SSL protocol.