forked from lokeshgupta1981/Kafka-Tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNotes.txt
More file actions
10 lines (9 loc) · 727 Bytes
/
Notes.txt
File metadata and controls
10 lines (9 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
cd E:\devsetup\bigdata\kafka2.5
start cmd /k bin\windows\zookeeper-server-start.bat config\zookeeper.properties
start cmd /k bin\windows\kafka-server-start.bat config\server.properties
cd E:\devsetup\bigdata\kafka2.5
bin\windows\kafka-topics.bat --create --bootstrap-server localhost:9092 --replication-factor 1 --partitions 1 --topic test
bin\windows\kafka-topics.bat --create --bootstrap-server localhost:9092 --replication-factor 1 --partitions 1 --topic users-log
bin\windows\kafka-topics.bat --list --bootstrap-server localhost:9092
bin\windows\kafka-console-producer.bat --bootstrap-server localhost:9092 --topic test
bin\windows\kafka-console-consumer.bat --bootstrap-server localhost:9092 --topic test --from-beginning