Gentoo Archives: gentoo-user

From: Michael Sullivan <msulli1355@×××××.com>
To: gentoo-user@l.g.o
Subject: Re: OT: CVS [WAS: Re: [gentoo-user] Need help discovering what's using a port (for cvsd)] SOLVED
Date: Wed, 16 Jun 2010 15:01:21
Message-Id: 1276700410.14921.12.camel@camille.espersunited.com
In Reply to: Re: OT: CVS [WAS: Re: [gentoo-user] Need help discovering what's using a port (for cvsd)] by Paul Hartman
1 On Fri, 2010-03-05 at 09:43 -0600, Paul Hartman wrote:
2 > On Thu, Mar 4, 2010 at 5:54 PM, Michael Sullivan <msulli1355@×××××.com> wrote:
3 > > On Thu, 2010-03-04 at 17:30 -0600, Paul Hartman wrote:
4 > >> On Thu, Mar 4, 2010 at 5:02 PM, Michael Sullivan <msulli1355@×××××.com> wrote:
5 > >> > netstat: no support for `AF IPX' on this system.
6 > >> > netstat: no support for `AF AX25' on this system.
7 > >> > netstat: no support for `AF X25' on this system.
8 > >> > netstat: no support for `AF NETROM' on this system.
9 > >> >
10 > >> >
11 > >> > I assume these are kernel options, but without knowing specific symbol
12 > >> > names, I'm not sure how to compile them into the kernel. Can anyone
13 > >> > give me any advice on this situation?
14 > >>
15 > >> I think if you don't have support for those protocols the chances of a
16 > >> program using them is probably zero. :) FWIW i get the exact same
17 > >> messages. I don't think it is meaningful.
18 > >>
19 > >> I use a similar command (omitting all the unix sockets stuff): netstat
20 > >> -lnp --inet
21 > >>
22 > >> With regard to your original problem, try to edit the cvsd.conf and
23 > >> specify an actual IP address to listen on (instead of 0.0.0.0 or * or
24 > >> however it is defined there) and see if that helps.
25 > >>
26 > >
27 > > Now I've got the server running, but I can't connect to it:
28 > >
29 > > michael@camille ~ $ cvs login
30 > > Logging in to :pserver:michael@×××××××××××××××××××.com:2401/root
31 > > CVS password:
32 > > cvs [login aborted]: connect to
33 > > carter.espersunited.com(192.168.1.2):2401 failed: Connection refused
34 >
35 > Hmm, does cvsd use inetd? maybe it needs to be added to allowed port
36 > list or something like that.
37 >
38 This line in the config file:
39
40 Listen 127.0.0.1 2401
41
42 needed to be changed to this:
43 Listen 192.168.1.2 2401
44
45 And now it works