0

Not able to start kafka server but my zookeeper is working fine

C:\kafka> .\bin\windows\kafka-server-start.bat .\config\server.properties The system cannot find the path specified.

C:\kafka>.\bin\windows\kafka-server-start.bat .\config\server.properties 'wmic' is not recognized as an internal or external command, operable program or batch file.

version of kafka is 3.0.0 latest

1 Answers1

0

back slash() is missing before bin.

try this:

C:\kafka> .\bin\windows\kafka-server-start.bat .\config\server.properties

Murali D
  • 76
  • 1
  • 7
  • now got this...................................................................................................................... C:\kafka>.\bin\windows\kafka-server-start.bat .\config\server.properties 'wmic' is not recognized as an internal or external command, operable program or batch file. – Amit Bhalla Dec 04 '21 at 12:11
  • which windows version you are using ? Did u check platform requirements to install kafka3.0? – Murali D Dec 07 '21 at 03:29