ERROR: transport error 202: bind failed when starting Tomcat 7 in debug mode

Try killing the processes with a single line command -

pkill -9 -f tomcat

Some other application is using the ports being trying to open by tomcat. By default, it uses 8080, 8443, 8005, 8009 etc., grep for tomcat specific ports already being in use by using the below command.

netstat -an

identify the process already acquired the conflicting ports and terminate/free up so that tomcat can use it. One more thing, tomcat debug mode tries to use additional port for debug purpose (i.e., 8000). See if that port is already in use by some other process


I changed the port , set JPDA_ADDRESS to 1043 and it worked for me.

Tags:

Tomcat

Tomcat7