What would cause a TCP socket to throw "java.net.BindException: Address already in use" even when reuse address is set to true? This only occurs if the application is quickly restarted. Running on CentOS 5 linux OS.
|
|
|||||||||||
|
|
|
This kinda explains it: http://www.beej.us/guide/bgnet/output/html/singlepage/bgnet.html#bind
Basically, in C, you call a function called setsockopt(), and one of the parameters is called SO_REUSEADDR, which lets you reuse that port. I found some brief links on google which should get you started figuring out how to set the equivalent option in Java: http://java.sun.com/j2se/1.4.2/docs/guide/net/socketOpt.html http://java.sun.com/j2se/1.4.2/docs/api/java/net/SocketOptions.html |
||
|
|
|
|
Hi, Java Bind Exception occurs If either of your port or InetAddress is already used and you want to use once again. So free up the port stop the program if running. otherwise change the port Thanks Deepak |
||
|
|
|
|
If what you say is correct you should be able to trap this exception in a loop and try again after a few seconds. (You shouldn't have to do this, but I have heard of a few odd things about CentOS) |
||
|
|
|
|
You have to check for the PID of the previous instance of the application. If it's still there, you have to wait for the application die / kill it explicitly. |
||
|
|
|
|
Something else is using that port. What exactly is the sequence of events when the application is restarted? |
||
|
|
