Our MDM Server uses port 20005 and if it is busy it wont start, it means some other application is waiting for the port.
we find out by this command
netstat -a | grep 20005
if it gives FINWAIT_1 then it is OK it will get free in some time, but if it gives FINWAIT_2 then we need to free the same manually
After analysis we found the destination host where three EP server are hosted EP1, EP2 and EP3
we logged on to each one and found which process is looking keeping busy port 20005, with below command
lsof -i | 20005
on EP3 we found the process
killed the process by kill -9 pid
Now the port became free :)
Thursday, February 3, 2011
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment