Search code examples
javaspringapache-kafkakafka-consumer-apispring-kafka

Kafka + Spring locally broker may not be available. Windows 10


I'm having trouble configuring kafka and spring on Windows 10 machine.

I did according to the guide, which I found on YouTube https://www.youtube.com/watch?v=IncG0_XSSBg&t=538s.

I can't connect locally in any way.

The spring application is very simple and its task is only to connect to the standing server.

I have already spent a lot of time looking for a solution and nothing helps me. I tried a lot. changed it to server.properties listenera na listeners = PLAINTEXT: //127.0.0.1: 9092. I changed Java version to jre 8.241.

The spring application cannot connect to the broker.

Please help.

spri

UPDATE

After typing, to start Kafka server:

bin/kafka-server-start.sh config/server.properties

I have got following error:

enter image description here


Solution

  • After you run zookeper, open another terminal, change directory to again where you run zookeper, and then run command bin/kafka-server-start.sh config/server.properties. This will start kafka server, and you will be able to reach 9092 port.

    For details, you can see quick start doc.