info-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: how do i start the cvs server


From: Larry Jones
Subject: Re: how do i start the cvs server
Date: Tue, 22 Jan 2002 11:52:56 -0500 (EST)

Donald Sharp writes:
>
> On Tue, Jan 22, 2002 at 02:37:42PM +0000, address@hidden wrote:
> > Hi,
> >   i am using linux redhat 7.2 machine. how do i start the required cvs
> > server so that i can remotely login useing "cvs login". is there any kind 
> > of documentation for that. i am new to linux 7.2, how do i make the
> > necessary changes to the system files for the same.
> 
> Read section 2.9 of the cvs manual.  Pay close attention to
> section 2.9.3.1.

If your version of Linux uses xinetd instead of inetd, you'll be
interested in the following addition to the manual:

If your system uses xinetd instead of inetd, the procedure is slightly
different. Create a file called '/etc/xinetd.d/cvspserver' containing
the following:

service cvspserver
{
   port        = 2401
   socket_type = stream
   protocol    = tcp
   wait        = no
   user        = root
   passenv     = PATH
   server      = /usr/local/bin/cvs
   server_args = -f --allow-root=/usr/cvsroot pserver
}

(If cvspserver is defined in '/etc/services', you can omit the port
line.)

-Larry Jones

It must be sad being a species with so little imagination. -- Calvin



reply via email to

[Prev in Thread] Current Thread [Next in Thread]