You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@karaf.apache.org by "Jean-Baptiste Onofré (JIRA)" <ji...@apache.org> on 2014/12/18 14:23:13 UTC

[jira] [Work started] (KARAF-3411) windows startup scripts don't handle setenv.bat correctly

     [ https://issues.apache.org/jira/browse/KARAF-3411?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Work on KARAF-3411 started by Jean-Baptiste Onofré.
---------------------------------------------------
> windows startup scripts don't handle setenv.bat correctly
> ---------------------------------------------------------
>
>                 Key: KARAF-3411
>                 URL: https://issues.apache.org/jira/browse/KARAF-3411
>             Project: Karaf
>          Issue Type: Improvement
>          Components: karaf-core
>    Affects Versions: 2.4.1
>         Environment: Windows Any
>            Reporter: Alexander Sahler
>            Assignee: Jean-Baptiste Onofré
>            Priority: Minor
>             Fix For: 4.0.0, 3.0.3, 2.4.1
>
>         Attachments: patch_karaf.bat, patch_servicemix.bat
>
>
> When setting variables in setenv.bat they don't find their way to JAVA_DEFAULT_OPTS. This is due to the variable overwrite in line 231.
> {noformat}
> set DEFAULT_JAVA_OPTS=%JAVA_MODE% -Xms%JAVA_MIN_MEM% -Xmx%JAVA_MAX_MEM% -Dderby.system.home="%KARAF_DATA%\derby" -Dderby.storage.fileSyncTransactionLog=true -Dcom.sun.management.jmxremote -XX:+UnlockDiagnosticVMOptions -XX:+UnsyncloadClass
> {noformat}
> Instead it should be:
> {noformat}
> set DEFAULT_JAVA_OPTS=%JAVA_MODE% %DEFAULT_JAVA_OPTS% -Xms%JAVA_MIN_MEM% -Xmx%JAVA_MAX_MEM% -Dderby.system.home="%KARAF_DATA%\derby" -Dderby.storage.fileSyncTransactionLog=true -Dcom.sun.management.jmxremote -XX:+UnlockDiagnosticVMOptions -XX:+UnsyncloadClass
> {noformat}
> to keep the previous contents of DEFAULT_JAVA_OPTS.
> The same applies for karaf.bat.



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