[jira] [Commented] (KAFKA-1703) The bat script failed to start on windows

2016-10-17 Thread Andrew Musselman (JIRA)

[ 
https://issues.apache.org/jira/browse/KAFKA-1703?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15583022#comment-15583022
 ] 

Andrew Musselman commented on KAFKA-1703:
-

Has this been vetted/merged?

> The bat script failed to start on windows
> -
>
> Key: KAFKA-1703
> URL: https://issues.apache.org/jira/browse/KAFKA-1703
> Project: Kafka
>  Issue Type: Bug
>  Components: build
>Affects Versions: 0.8.1.1
>Reporter: ChengRen
>  Labels: newbie
> Attachments: kafka-run-class.bat
>
>
> The bat script in bin\windows can not start zookeeper and kafka correctly 
> (where my os is just installed and only jdk ready). I modified the 
> kafka-run-class.bat and add jars in libs folder to classpath.
> for %%i in (%BASE_DIR%\core\lib\*.jar) do (
>   call :concat %%i
> )
>  added  begin
> for %%i in (%BASE_DIR%\..\libs\*.jar) do (
>   call :concat %%i
> )
>  added  end
> for %%i in (%BASE_DIR%\perf\target\scala-2.8.0/kafka*.jar) do (
>   call :concat %%i
> )
> Now it runs correctly.
> Under bin\windows:
> zookeeper-server-start.bat ..\..\config\zookeeper.properties
>kafka-server-start.bat ..\..\config\kafka.properties



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (KAFKA-1703) The bat script failed to start on windows

2015-01-22 Thread JK Dong (JIRA)

[ 
https://issues.apache.org/jira/browse/KAFKA-1703?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14288535#comment-14288535
 ] 

JK Dong commented on KAFKA-1703:


modify 
set BASE_DIR=%CD%\..
to 
set BASE_DIR=%CD%\..\..

and add classpath for release version:
for %%i in (%BASE_DIR%\libs\*.jar) do (
call :concat %%i
)

 The bat script failed to start on windows
 -

 Key: KAFKA-1703
 URL: https://issues.apache.org/jira/browse/KAFKA-1703
 Project: Kafka
  Issue Type: Bug
  Components: build
Affects Versions: 0.8.1.1
Reporter: ChengRen
  Labels: newbie
 Attachments: kafka-run-class.bat


 The bat script in bin\windows can not start zookeeper and kafka correctly 
 (where my os is just installed and only jdk ready). I modified the 
 kafka-run-class.bat and add jars in libs folder to classpath.
 for %%i in (%BASE_DIR%\core\lib\*.jar) do (
   call :concat %%i
 )
  added  begin
 for %%i in (%BASE_DIR%\..\libs\*.jar) do (
   call :concat %%i
 )
  added  end
 for %%i in (%BASE_DIR%\perf\target\scala-2.8.0/kafka*.jar) do (
   call :concat %%i
 )
 Now it runs correctly.
 Under bin\windows:
 zookeeper-server-start.bat ..\..\config\zookeeper.properties
kafka-server-start.bat ..\..\config\kafka.properties



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)