Skip to content

galibey/kafka-docker-ssl

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

💥 Local Kafka Cluster in Docker with SSL

This project sets up a local Kafka cluster with Zookeeper, Confluent Control Center, Confluent Rest Proxy, and Confluent Schema Registry.

Also included:

  • Kafka Tools (CLI tools) for administration

Initial set-up

  1. Ensure Docker and Docker Compose are installed

Starting up

  1. One-time set-up (or if you want to generate new secrets)
  ./auto/create-certs.sh
  1. Bring the cluster up.
  ./auto/up.sh

Note: By default, some services like kafka-tools is scaled down as they are not useful to be up as a service.
See below to learn more about running kafka-tools for admin tasks.

Logs

  ./auto/logs.sh

Shutting Down

  ./auto/down.sh

Accessing the services

  1. To access the Control Center, visit http://localhost:9021
  2. To access the Rest Proxy, interact with http://localhost:8082
  3. Broker is available at localhost:19092

Running Kafka Tools

  ./auto/kafka-tools.sh <tool-name> <arguments>
  # Note that the broker is available at "broker:29092"
  # Example, list all topics
  ./auto/kafka-tools.sh kafka-topics --command-config /etc/kafka/config/command.properties --bootstrap-server broker.local:19092 --list
  # Example, create a topic
  ./auto/kafka-tools.sh kafka-topics --bootstrap-server=broker.local:19092 --command-config /etc/kafka/config/command.properties --create --topic UserEmail --partitions 1 --replication-factor 1
  # Example, delete a Topic
  ./auto/kafka-tools.sh kafka-topics --bootstrap-server=broker.local:19092 --command-config /etc/kafka/config/command.properties --delete --topic UserEmail
-

About

A quick set up for running Kafka on Docker with SSL for local development

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 100.0%