Skip to content

Contact sales

By filling out this form and clicking submit, you acknowledge our privacy policy.
  • Labs icon Lab
  • A Cloud Guru
Google Cloud Platform icon
Labs

Using Client Authentication with Kafka

If you want to expose your Kafka brokers so that external clients can communicate with them, it is important to make sure that your implementation is secure. In some situations, this means implementing client authentication. In this lab, you will have the opportunity to work hands-on with one of the client authentication methods available in Kafka: client certificates. You will implement authentication with client certificates in an existing cluster, and then authenticate as a client to verify that your implementation works. This will give you hands-on experience with the process of securing a Kafka cluster.

Google Cloud Platform icon
Labs

Path Info

Level
Clock icon Intermediate
Duration
Clock icon 30m
Published
Clock icon Oct 18, 2019

Contact sales

By filling out this form and clicking submit, you acknowledge our privacy policy.

Table of Contents

  1. Challenge

    Generate Your Client Certificate Files

    1. Generate a client certificate. Choose a password for the client keystore when prompted:
    cd ~/certs/
    
    keytool -keystore client.keystore.jks -alias kafkauser -validity 365 -genkey -keyalg RSA -dname "CN=kafkauser, OU=Unknown, O=Unknown, L=Unknown, ST=Unknown, C=Unknown"
    
    1. Sign the key, then import the certificate authority and signed key into the keystore. When asked for the password to the ca-key, enter the password AllTheKeys:
    keytool -keystore client.keystore.jks -alias kafkauser -certreq -file client-cert-file
    
    openssl x509 -req -CA ca-cert -CAkey ca-key -in client-cert-file -out client-cert-signed -days 365 -CAcreateserial
    
    keytool -keystore client.keystore.jks -alias CARoot -import -file ca-cert
    
    keytool -keystore client.keystore.jks -alias kafkauser -import -file client-cert-signed
    
    1. Move the client keystore into an appropriate location:
    sudo cp client.keystore.jks /var/private/ssl/
    
    sudo chown root:root /var/private/ssl/client.keystore.jks
    
  2. Challenge

    Enable Client Authentication for the Broker

    1. Set client authentication to required in server.properties:
    sudo vi /etc/kafka/server.properties
    
    1. Locate the line that begins with ssl.client.auth and change it:
    ssl.client.auth=required
    
    1. Restart Kafka and then verify that everything is working:
    sudo systemctl restart confluent-kafka
    
    sudo systemctl status confluent-kafka
    
  3. Challenge

    Add Client Authentication Settings to Your Client Config File

    1. Edit client-ssl.properties:
    cd ~/
    
    vi client-ssl.properties
    
    1. Add the following lines:
    ssl.keystore.location=/var/private/ssl/client.keystore.jks
    ssl.keystore.password=<your client keystore password>
    ssl.key.password=<your client key password>
    
    1. Create a console consumer using client authentication to make verify that everything is working:
    kafka-console-consumer --bootstrap-server zoo1:9093 --topic inventory_purchases --from-beginning --consumer.config client-ssl.properties
    

The Cloud Content team comprises subject matter experts hyper focused on services offered by the leading cloud vendors (AWS, GCP, and Azure), as well as cloud-related technologies such as Linux and DevOps. The team is thrilled to share their knowledge to help you build modern tech solutions from the ground up, secure and optimize your environments, and so much more!

What's a lab?

Hands-on Labs are real environments created by industry experts to help you learn. These environments help you gain knowledge and experience, practice without compromising your system, test without risk, destroy without fear, and let you learn from your mistakes. Hands-on Labs: practice your skills before delivering in the real world.

Provided environment for hands-on practice

We will provide the credentials and environment necessary for you to practice right within your browser.

Guided walkthrough

Follow along with the author’s guided walkthrough and build something new in your provided environment!

Did you know?

On average, you retain 75% more of your learning if you get time for practice.

Start learning by doing today

View Plans