Description of problem: jconsole.bat not passing command line arguments to jconsole.exe How reproducible: Pass an argument such as one to enable debug logging such as shown below and the logging will not change. jconsole.bat -J-Djava.util.logging.config.file=logging-jconsole.properties Expected results: Arguments passed to jconsole.exe Workaround: Edit %JBOSS_HOME%/bin/jconsole.bat Change this line from: "%JAVA_HOME%\bin\jconsole.exe" "-J-Djava.class.path=%CLASSPATH%" To: if "%*" == "" ( "%JAVA_HOME%\bin\jconsole.exe" "-J-Djava.class.path=%CLASSPATH%" ) else ( "%JAVA_HOME%\bin\jconsole.exe" "-J-Djava.class.path=%CLASSPATH%" %* )
This bug was accidentally moved from POST to MODIFIED via an error in automation, please see mmccune with any questions
Verified with EAP 6.4.12.CP.CR1
Retroactively bulk-closing issues from released EAP 6.4 cummulative patches.