如何防止运行./bin/kafka-topics.sh时打开Visual Studio Code?

wlp8pajw  于 2023-10-15  发布在  Apache
关注(0)|答案(1)|浏览(131)

我正在尝试通过执行以下命令在Windows中创建一个Kafka主题:

./bin/kafka-topics.sh --create --topic quickstart-events --bootstrap-server localhost:9092

执行时,Visual Studio Code会打开并显示kafka-topics.sh的内容,而不创建主题。
在我的PowerShell终端中显示的唯一内容是

update#setState idle

update#setState checking for updates

有没有人对如何解决这个问题有想法?

zdwk9cvp

zdwk9cvp1#

Windows不使用shell文件
您需要使用包含的windows\kafka-topics.bat脚本
或者您需要在WSL 2、Docker或Linux VM等中运行shell脚本(和Kafka

相关问题