启动kafka服务器时出错:“**不同的应用程序**此时意外”

hyrbngr7  于 2021-06-04  发布在  Kafka
关注(0)|答案(3)|浏览(414)

我遵循一个快速入门指南,让Kafka和运行。我运行了zookeeper,但当我尝试使用以下命令启动kafka服务器时: .\bin\windows\kafka-server-start.bat .\config\server.properties 我得到以下错误 \Teradata\Client\16.20\bin\ was unexpected at this time. 我甚至不能开始理解这两者之间的联系。
任何小费都很感激。我被困住了。。。。

wsxa1bj1

wsxa1bj11#

这并不特定于kafka或zookeeper,而是它们如何加载java主路径和类路径。
您需要在windows设置中修复path变量,使其不包含任何空格

6tr1vspr

6tr1vspr2#

如果您使用的是apachekafka包结构,那么修复路径。它将自动解析。
下载了apache kafka文件夹结构kafka_2.11-0.9.0.0->bin->windows->all*.bat文件。
Kafka2.11-0.9.0.0->配置->所有*.properties文件
因此,要启动zookeeper,请转到kafka_2.11-0.9.0.0->bin->windows->in window address bar type cmd,然后输入: zookeeper-server-start.bat ..\..\config/zookeeper.properties o/p:Zookeeper将开始工作
要再次启动broker,请转到同一文件夹
Kafka2.11-0.9.0.0->bin->windows->in window address bar键入cmd,然后输入: kafka-server-start.bat ..\..\config/server.properties 订单:经纪人将开始工作。
注意:您可以使用此属性文件更新自己的配置。例如更改端口等。。

I can't even begin to understand how the two might be related.<br/>


有关更多信息,您可以查看blog:roleoftapachezookeeper in kafka-monitoring&configuration

7dl7o3gd

7dl7o3gd3#

在我的情况下,我需要改变 CLASSPATH 环境变量,从 Program FilesProgra~1 以及 Program Files (x86)Progra~2
这就解决了问题。

相关问题