I’m developing an application server, during which I constantly edit–recompile–rerun the code. Unfortunately, after interrupting the code, the kernel (Ubuntu 11.10) does not immediately reclaim the port bound to the socket, so I have to wait several minutes until I can rerun.

I thought that properly closing the socket in an interrupt handler solves the problem but it apparently has no effect.

Is there any way to speed up the process and therefore the development cycle?

link|improve this question

75% accept rate
feedback

migrated from serverfault.com Feb 3 at 16:18

This question came from our site for system administrators and desktop support professionals.

1 Answer

up vote 2 down vote accepted

Set the SO_REUSEADDR option on the socket after opening it. See this question for more information.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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