https://github.com/pixelbyaj/kafka-docker
It's Kafka Docker
https://github.com/pixelbyaj/kafka-docker
Last synced: 2 months ago
JSON representation
It's Kafka Docker
- Host: GitHub
- URL: https://github.com/pixelbyaj/kafka-docker
- Owner: pixelbyaj
- License: mit
- Created: 2022-07-16T12:15:59.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-07T18:33:47.000Z (almost 2 years ago)
- Last Synced: 2025-01-17T07:08:11.775Z (4 months ago)
- Language: Batchfile
- Size: 38.1 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Kafka Docker with PLAINTEXT AND SSL
This repo provides sample files for [Apache Kafka](https://www.confluent.io/what-is-apache-kafka/) and Confluent Docker images configuration for PLAINTEXT/SSL.## Kafka Server :: PLAINTEXT
1. Open plaintext folder and run below command```cmd
docker-compose -up -d
```## Kafka Server :: SSL
1. Open ssl/secrets folder
2. Create required certificate by run the below bat file```cmd
create-certs.bat
```
3. This will generate the below required certificates
* kafka.server.keystore.jks
* kafka.server.truststore.jks
* root-ca.crt
* kafka_client.crt
* kafka_client.key
4. Go back to ssl folder and run below command
```cmd
docker-compose -up -d
```
Kafka SSL server would be up and running