Created
September 21, 2018 15:27
-
-
Save koduki/0f3a8ba540570fab418d03955a7fdf7f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker run -d --name zookeeper -p 2181:2181 confluent/zookeeper | |
docker run -it --name kafka -p 9092:9092 --link zookeeper:zookeeper confluent/kafka | |
kafka-topics --create --zookeeper zookeeper:2181 --replication-factor 1 --partitions 1 --topic test | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment