I have defined my remote debugging port in the Java Runtime variables but what is the behavior when multiple JVMs run on the same host with that configuration.
After the first instance takes that port will the other JVMs not be reachable or is there a fallback to determine another available port?
Is there any way to determine this port or configure additional ports to be used?
My Java Runtime Settings:
-Xms64m -Xmx256m -agentlib:jdwp=transport=dt_socket,address=58000,server=y,suspend=n
