ERROR:
RC-50204: Error: – Web Listener Port in use: Port Value = 8009
CAUSE:
When cloning we have faced this error.
This is due to some other process is using the same port 8009.
We have check and kill the process using the same port
Solution:
$ netstat -Aan | grep -i 8009
f1000e0002552bb8 tcp 0 0 *.8009 *.* LISTEN
$
$ rmsock f1000e0002552bb8 tcpcb
The socket 0xf1000e0002552808 is being held by proccess 14352854 (java).
$
Kill the process 14352854
Recent Posts