Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am not able to remotely debug tomcat using Eclipse. It is giving following error:

Failed to connect to remote VM. Connection refused. Connection refused: connect

I did following steps for remote debugging. 1. add following script in catalina.bat set JPDA_TRANSPORT=dt_socket
set JPDA_ADDRESS=8001

  1. Also add following script in catalina.bat

set JAVA_OPTS=%JAVA_OPTS% -Xdebug -Xrunjdwp:transport=dt_socket,address=8001,server=y,suspend=n

  1. Create new Debug configuration with Host : localhost and port : 8001.

After clicking on debug button I am getting above error.

Thanks.

share|improve this question
Could a firewall be blocking the request? Do you have a firewall? – reverse_engineer Mar 8 at 10:47
Are you sure the arguments were passed over to the JVM ? Check the tomcat logs to see if it is listening on the JDWP socket. – Deepak Bala Mar 8 at 11:34

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.