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
- Also add following script in catalina.bat
set JAVA_OPTS=%JAVA_OPTS% -Xdebug -Xrunjdwp:transport=dt_socket,address=8001,server=y,suspend=n
- Create new Debug configuration with Host : localhost and port : 8001.
After clicking on debug button I am getting above error.
Thanks.