vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| My squid.conf snmp_port 3401 forward_snmpd_port 0 snmp_access allow my_lan localhost snmp_access deny all snmp_incoming_address 0.0.0.0 snmp_outgoing_address 0.0.0.0 Error Messages. 2003/12/15 15:11:30| Accepting SNMP messages on port 3401, FD 44. 2003/12/15 15:11:30| commBind: Cannot bind socket FD 45 to *:3401: (48) Address already in use FATAL: Cannot open Outgoing SNMP Port Squid Cache (Version 2.5.STABLE4): Terminated abnormally. Note: I run the follow command line for determining if this port is ocuped by another process, but nobody used the port. netstat -a -n | grep -n "udp.*:3401" empty output B. |
| |||
| On Tue, 23 Dec 2003 02:27:04 +0100, "Bulba008" <bulba008@op.pl> wrote: > >netstat -a -n | grep -n "udp.*:3401" > >empty output Try lsof -i instead. greg > >B. > -- Once you try my burger baby,you'll grow a new thyroid gland. I said just eat my burger, baby,make you smart as Charlie Chan. You say the hot sauce can't be beat. Sit back and open wide. |
| |||
| "Bulba008" <bulba008@op.pl> wrote in news:bs85l8$dth$1@news.onet.pl: > ... > Note: I run the follow command line for determining if this port is > ocuped by another process, but nobody used the port. > > netstat -a -n | grep -n "udp.*:3401" ':' isn't shown by netstat, so it will never match, change the regexp or try fstat instead -- Peter Strömberg C2K2 C2K3 ISCCIV02 ISCCIV03 |
| |||
| On Fri, 26 Dec 2003 00:16:07 +0100, "Bulba008" <bulba008@op.pl> wrote: >lsof -i > >I see a lot of lines, how can I filter it for port 3401? > http://www.isu.edu/departments/comcom/workshops/unix/ greg -- Once you try my burger baby,you'll grow a new thyroid gland. I said just eat my burger, baby,make you smart as Charlie Chan. You say the hot sauce can't be beat. Sit back and open wide. |
| ||||
| Uzytkownik "Greg Hennessy" <me@privacy.net> napisal w wiadomosci news:lfpouv0fpsv7s586hapcmkkcefg79nmfba@4ax.com... > On Fri, 26 Dec 2003 00:16:07 +0100, "Bulba008" <bulba008@op.pl> wrote: > > >lsof -i > > > >I see a lot of lines, how can I filter it for port 3401? > > > > http://www.isu.edu/departments/comcom/workshops/unix/ > lsof -i | grep '3401' nothing too |