Details
Description
The debug port number is set to 5005 in many of the scripts located in the bin directory. I am requesting the creation of a variable, i.e. JAVA_DEBUG_PORT, to allow the use of different debug port without editing script files.
Below is an example of what to add to the script bin/shell
DEFAULT_JAVA_DEBUG = “5005"
if [ "x$JAVA_DEBUG_PORT" = "x" ]; then
JAVA_DEBUG_PORT="$DEFAULT_JAVA_DEBUG_PORT"
fi
DEFAULT_JAVA_DEBUG_OPTS = “-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=$JAVA_DEBUG_PORT”