./bin/kafka-server-start.sh -daemon config/server.properties
./bin/kafka-server-stop.sh
./bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1
./bin/kafka-topics.sh --list --zookeeper loclahost:2181
./bin/kafka-console-producer.sh --broker-list localhost:9092 --topic test-topic
./bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic topic01 --from-beginning