I have next task: Debug Apache Tomcat in Eclipse.
My steps:
- Run Tomcat:
./startup.sh - Check - open in browser localhost:8080/MyProject - SUCCESS.
- in file
catalina.shI added next lines:
export JPDA_ADDRESS=8000
export JPDA_TRANSPORT=dt_socket
- in file
startup.sh:
I comment this line:
#exec "$PRGDIR"/"$EXECUTABLE" start "$@"
and added next line:
exec "$PRGDIR"/"$EXECUTABLE" jpda start "$@"
- Run Tomcat:
startup.sh - Check - in browser try open localhost:8080/MyProject - FAIL. At the next step I will try add settings in Eclipse for remote debug Tomcat, but I have Fail on previous step.
Why did this happen??
Maybe, it is depends on OS type? I use Ubuntu 11.10...