-
CMAK(kafka manager)dev/kafka 2021. 9. 2. 11:32
yahoo 의 kafka 관리 도구
GitHub - yahoo/CMAK: CMAK is a tool for managing Apache Kafka clusters
CMAK is a tool for managing Apache Kafka clusters. Contribute to yahoo/CMAK development by creating an account on GitHub.
github.com
Windows 10 에서 실행하니 아래와 같은 오류 발생.
The input line is too long. The syntax of the command is incorrect.
아래 링크를 참조해서,
https://github.com/yahoo/CMAK/issues/572#issuecomment-429018314
kafka-manager.bat "The input line is too long." · Issue #572 · yahoo/CMAK
The Windows batch file to start-up Kafka Manager is not working (Windows 10). I git cloneed the project, Then sbt clean dist, Then: C:\Users\{user}\Desktop\kafka-manager-1.3.3.21\bin>kafka-manag...
github.com
cmak.bat 수정. (경로 뒤 \\ 를 제거)
if "%CMAK_HOME%"=="" ( rem set "APP_HOME=%~dp0\\.." set "APP_HOME=%~dp0.." rem Also set the old env name for backwards compatibility rem set "CMAK_HOME=%~dp0\\.." set "CMAK_HOME=%~dp0.." ) else ( set "APP_HOME=%CMAK_HOME%" )
정상 동작 성공.