1

I am trying to run kafka server in my local computer .

(i do it step by step like in this tutorial : http://javainuse.com/misc/apache-kafka-hello-world).

When i tryin to make this command :

.\bin\windows\zookeeper-server-start.bat .\config\zookeeper.properties

i get this error message :

The system cannot find the path specified.

click here to see the error

1 Answers1

1

It seems that you are not in the correct directory. To get your working directory, fire up a Command Line and run

cd

Make sure that your working directory is the kafka folder; for example:

C:\Users\giorgos\kafka_2.12-0.10.2.1

and then run the command:

.\bin\windows\zookeeper-server-start.bat .\config\zookeeper.properties
Giorgos Myrianthous
  • 36,235
  • 20
  • 134
  • 156