InterviewSolution
Saved Bookmarks
| 1. |
How do we start the Kafka server? |
|
Answer» Kafka is dependent on ZooKeeper so we must first start ZooKeeper before starting Kafka SERVER. Please find below the step by step process to start the Kafka server : 1:Starting the ZooKeeper by typing the following command in a terminal : 2: Once ZooKeeper STARTS running, we can start the Kafka server by running the following command 3: The NEXT step is checking the SERVICES running in backend by checking below commands : 4: Once the Kafka server starts running, we can create a topic by running below command : 5: We can check the available topic by triggering below command in terminal : |
|