Update tutorial-kafka.md (#13056)

* Update tutorial-kafka.md

Added missing command to the doc for zookeeper before starting kafka

* Update docs/tutorials/tutorial-kafka.md

Co-authored-by: Frank Chen <frankchen@apache.org>
This commit is contained in:
sachidananda007 2022-09-09 07:36:19 +05:30 committed by GitHub
parent 6438f4198d
commit 48c99054d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -43,6 +43,11 @@ curl -O https://archive.apache.org/dist/kafka/2.7.0/kafka_2.13-2.7.0.tgz
tar -xzf kafka_2.13-2.7.0.tgz
cd kafka_2.13-2.7.0
```
Start zookeeper first with the following command:
```bash
./bin/zookeeper-server-start.sh config/zookeeper.properties
```
Start a Kafka broker by running the following command in a new terminal: