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

后端 未结 3 642
谎友^
谎友^ 2020-12-19 05:26

I was remote debugging with Eclipse on my Ubuntu VM fine to a remote WebLogic application, then it stopped working. I have debug turned on in the remote server. From my VM

相关标签:
3条回答
  • 2020-12-19 05:48

    I bumped up the debug timeout (Windows/Preferences/Java/Debug/Communication/Debugger timeout) and restarted both the admin server and the managed server where the application is deployed and is listening on the debug port.

    0 讨论(0)
  • 2020-12-19 05:55

    set java.property.debug=true in the property file may help you.

    0 讨论(0)
  • 2020-12-19 06:00

    Recently I got the same problem, and this is what I found after solved it. If the configuration is wrong from the remote server side, the message should be "connection refused" not "timeout". Besides, "timeout" also does not see any wireshark packets, while "refused" gives:

    Finally I found that the network connection of the "timeout" Eclipse is manually configured. You can check this under window->preferences->general->network connections. If it is "manual" (like what I had) change it to "native".

    0 讨论(0)
提交回复
热议问题