1833005 Members
3515 Online
110048 Solutions
New Discussion

PORTS

 
ShivKumar_1
Frequent Advisor

PORTS

Hi Experts,
I am trying to install SEQUELink server on my box it uses port 19995 , when I m installing it , it says PORT busy.
Is there a way of releasing the port? I have already stopped the "Sequelink" server. Its a fresh install. I have removed the earlier version too.

Thnks
SK
2 REPLIES 2
Stuart Browne
Honored Contributor

Re: PORTS

issue the command:

netstat -ntlp | grep 19995

see what process is currently using the port.

The last piece of information on the line from above will be the "pid/proc", so you can easilly find out what's using it.
One long-haired git at your service...
U.SivaKumar_2
Honored Contributor

Re: PORTS

Hi,

netstat will not show the process which is holding the port . So use lsof.

#lsof -i | grep 19995

will show the process and PID of the process holding port 19995.

Then you can kill the process using PID to release the port.

regards,
U.SivaKumar
Innovations are made when conventions are broken