Remote Debugging: Failed to connect to remote VM. Connection timed out | Community
Skip to main content
Level 4
February 11, 2020
Solved

Remote Debugging: Failed to connect to remote VM. Connection timed out

  • February 11, 2020
  • 2 replies
  • 15955 views

I am trying to debug some java code, but i am getting a connection timed out exception-

Failed to connect to remote VM. Connection timed out.


I have added 
if not defined CQ_JVM_OPTS set CQ_JVM_OPTS=-Xmx1024m -XX:MaxPermSize=256M -Djava.awt.headless=true -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=30303

in start.bat file

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by user05162

You can just add -debug 30303 in the JVM opts to start AEM in debug mode.

 

-debug <port>

         Enable Java Debugging on port number; forces forking 

 

No need for "runjdwp:transport=dt_socket,server=y,suspend=n,address=30303"

2 replies

santhosh_kumar6
February 11, 2020

Hi @chinmayish, Try changing the port number and map the same port number in eclipse debug configurations. Try launching now in debug mode.

user05162Adobe EmployeeAccepted solution
Adobe Employee
February 12, 2020

You can just add -debug 30303 in the JVM opts to start AEM in debug mode.

 

-debug <port>

         Enable Java Debugging on port number; forces forking 

 

No need for "runjdwp:transport=dt_socket,server=y,suspend=n,address=30303"