Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

tomcat

tomcat7

I have installed tomcat 7.0.68 on windows7-64bit machine.

If I run catalina.bat jpda start , it just opens and closes and no logs are generated.

If I run catalina.bat jpda run I get below error

Using CATALINA_BASE:   "C:\apache-tomcat-7.0.68"
Using CATALINA_HOME:   "C:\apache-tomcat-7.0.68"
Using CATALINA_TMPDIR: "C:\apache-tomcat-7.0.68\temp"
Using JRE_HOME:        "C:\Java\jre7"
Using CLASSPATH:       "C:\apache-tomcat-7.0.68\bin\bootstrap.jar;C:\apache- 
                         tomcat-7.0.68\bin\tomcat-juli.jar"
Picked up _JAVA_OPTIONS: -Xmx512M
ERROR: transport error 202: bind failed: Address already in use
ERROR: JDWP Transport dt_socket failed to initialize, TRANSPORT_INIT(510)
       JDWP exit error AGENT_ERROR_TRANSPORT_INIT(197): No transports  
        initialized [../../../src/share/back/debugInit.c:750]
FATAL ERROR in native method: JDWP No transports initialized,
                       jvmtiError=AGENT_ERROR_TRANSPORT_INIT(197)
like image 674
user2359634 Avatar asked Mar 11 '16 15:03

user2359634


1 Answers

Try killing the processes with a single line command -

pkill -9 -f tomcat
like image 187
unknown_boundaries Avatar answered Sep 29 '22 13:09

unknown_boundaries