Re: portly port

2004-05-03 Thread Tzafrir Cohen
On Mon, May 03, 2004 at 11:08:04PM +0300, Aaron wrote: Hi, I am trying to run zope but it complains that a process is using port 8081 how do I determine what is using that port so I can disable it? As root (or if this is a process run by you) : netstat -lntp |grep port_num or fuser -v

Re: portly port

2004-05-03 Thread Yedidyah Bar-David
On Mon, May 03, 2004 at 11:08:04PM +0300, Aaron wrote: Hi, I am trying to run zope but it complains that a process is using port 8081 how do I determine what is using that port so I can disable it? netstat -anpl | grep -w 8081 -- Didi Thanks Aaron

Re: portly port

2004-05-03 Thread Aaron
Thanks for all the answers Aaron On ב', 2004-05-03 at 23:47, Yedidyah Bar-David wrote: On Mon, May 03, 2004 at 11:08:04PM +0300, Aaron wrote: Hi, I am trying to run zope but it complains that a process is using port 8081 how do I determine what is using that port so I can disable it?

Re: portly port

2004-05-03 Thread Sagi Bashari
As root: netstat -lnp The last parameter is the pid/name of the listening program. Sagi Aaron wrote: Hi, I am trying to run zope but it complains that a process is using port 8081 how do I determine what is using that port so I can disable it? Thanks Aaron

Re: portly port

2004-05-03 Thread Jonathan Ben Avraham
netstat -nap | grep 8081 look before you kill. - yba On Mon, 3 May 2004, Aaron wrote: Hi, I am trying to run zope but it complains that a process is using port 8081 how do I determine what is using that port so I can disable it? Thanks Aaron