I'm trying to debug Maven tests in Eclipse. When I launch tests with the maven option maven.surefire.debug, I get this error :

ERROR: transport error 202: bind failed: Address already in use
FATAL ERROR in native method: JDWP No transports initialized, jvmtiError=AGENT_ERROR_TRANSPORT_INIT(197)
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:690]
/bin/sh: line 1: 27500 Abort trap        

It is the same when I tried tu launch debug in my shell.

I tried to add the maven option forkMode=never, and I get another error with my weld artifact that I do not have without the maven.surefire.debug option :

Error loading Weld bootstrap, check that Weld is on the classpath

However, Weld is on my classpath.

Any ideas ?

link|improve this question

67% accept rate
2  
I found the solution. The port I used for debug was already in use, probably due to a bug of maven. When using maven.surefire.debug, maven waits on a port. I killed it once, and then retryed to relaunch the maven test. The solution is to close the opened port (I restarted my machine, but there may be a less radical solution...) – Rémi Doolaeghe Dec 8 '11 at 10:09
You can post this as your own solution and then accept it a day later. – Matthew Doucette Feb 1 at 20:42
feedback

1 Answer

up vote 1 down vote accepted

To kill a process listening on a port:

This command should list processes listening on all ports:

netstat -ano

The -o option will display the process id.

If you're using a *nix system, you can refine a little further with:

netstat -ano | grep <badport> 

When you have the process id, you can terminate it with:

Windows:

  • Open Task Manager, add the PID column with View > Select Columns > PID
  • Find the process and right-click to kill it

Others:

kill <PID>
link|improve this answer
Sorry, but the -o option is not recognized. I work on a MacOS 10.6. The solution seems to be a good idea, though. – Rémi Doolaeghe Mar 6 at 14:54
I think you may be able to get this info on OS X with 'sudo lsof -i -P' – lrussell Mar 6 at 15:16
You are right. sudo lsof -i -P | grep <bad_port> works fine. Thank you. – Rémi Doolaeghe Mar 7 at 8:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.