processes that don't die (cvs pserver)

2000-08-21 Thread Joao C. Ferreira

Hello All,

I am running CVS 1.10.7 in pserver mode, but Every time a developer accesses
CVS (developers use WinCVS as client program) the cvs process keeps running
even after the client has exited. After some time these processes die, but
sometimes the process table of the server gets full due to too many cvs
"ghost" processes still running.

Has anyone had this problem before? Is there a solution for it ?(will
upgrading to a newer CVS version help?)

Thanks in advance,
Joao.

--
"Where shall I begin, please your Majesty?" he asked.
"Begin at the beginning," the King said gravely,
"and go on till you come to the end: then stop."
- Lewis Carroll





Re: CVS/ENTRIES and cvs release

2000-08-21 Thread Larry Jones

Shawn Anderson writes:
> 
> Suppose you have a subdirectory in your working copy that you no longer wish
> to keep under cvs control.
> 
> cvs release foo[where foo is the said directory]
> rm -rf foo
> 
> Later on, you wish to run cvs status, but the stat aborts because foo, which
> exists in the CVS Entries file for its parent, does not exist in the
> directory hierarchy.
> 
> How to work around this problem??  We've tried cvs release -d foo, but we
> still get the error when running the stat [and, I'd imagine, virtually any
> other command that is driven by the CVS/Entries file.

I'm working on a fix for this problem (this is just a specific case of a
more general problem).  In the meantime, about all you can do is to
manually edit the CVS/Entries file and remove the defunct subdirectory.

-Larry Jones

My "C-" firmly establishes me on the cutting edge of the avant-garde.
-- Calvin




Re: newbie problem

2000-08-21 Thread Larry Jones

Donna Kline writes:
> 
> I am trying to make the INSTALL of cvs-1.10.  I get the ./configure 
> going just fine.  The make runs fine for a while.  Then it can't fine 
> krb5.h.  The comment above the line that needs this file says that CVS 
> is using MIT Kerberos.  Do I need to install MIT Kerberos to get this 
> krb5.h file?

No, you need to get the latest CVS (1.10.8) from www.cvshome.org.

-Larry Jones

Ever notice how tense grown-ups get when they're recreating? -- Calvin




RE: error when using password authentication

2000-08-21 Thread Guus Leeuw

>  -Original Message-
>  From: Goeran Zaengerlein [mailto:[EMAIL PROTECTED]]
>  So I added the following line to inetd.conf:
>  cvspserver  stream  tcp  nowait  root  /usr/bin/cvs
>  cvs --allow-root=/usr/cvsroot pserver
>  [all on one line]

Look at the archive on eGroups.com in this mailing list.

This really is a FAQ.

Guus




RE: cvs [login aborted]: unrecognized auth response from 10.5.0.30

2000-08-21 Thread Guus Leeuw

>  -Original Message-
>  From: Jimmy Lavoie [mailto:[EMAIL PROTECTED]]
>  OK, I've removed the "\" and it's working now.  Thank you.  
>  It's a shame
>  that the "\" was in the documentation.

Which documentation?

Guus




History file and cvs tag

2000-08-21 Thread Taylor, Tim



I would like to have 
CVS create an entry in the history file whenever a cvs tag command is 
issued.  Currently tag events are only added to the history file when cvs 
rtag is used.
 
Is anyone aware of a 
patch to CVS that already adds cvs tag command logging?  If not, I'll be 
creating this patch myself.
 
TIA,
- Tim 
Taylor


Re: cvs [login aborted]: unrecognized auth response from 10.5.0.30

2000-08-21 Thread Jimmy Lavoie

OK, I've removed the "\" and it's working now.  Thank you.  It's a shame
that the "\" was in the documentation.

Jimmy Lavoie ([EMAIL PROTECTED])

- Original Message -
From: Guus Leeuw <[EMAIL PROTECTED]>
To: 'Jimmy Lavoie' <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Friday, August 18, 2000 4:37 PM
Subject: RE: cvs [login aborted]: unrecognized auth response from 10.5.0.30


> >  -Original Message-
> >  From: Jimmy Lavoie [mailto:[EMAIL PROTECTED]]
> >  This is the line I add in /etc/inetd.conf
> >  cvspserver stream tcp nowait root /usr/bin/cvs \
> >  cvs -f --allow-root=/src/cvs pserver
>
> Hmmm :)
>
> Should have spotted that earlier.
>
> Remove the \ and join both lines so that you and up with 1
> line.
>
> Cheers,
> Guus
>




error when using password authentication

2000-08-21 Thread Goeran Zaengerlein

Hi everyone!

Yesterday I installed RedHat 6.1 on a box and tried to add CVS to it. 
I went to 
http://rufus.w3.org/linux/RPM/redhat/6.2/i386/cvs-1.10.7-7.i386.html
and downloaded the package.
I installed the package and tried to connect from a Windows machine 
using WinCVS. I got an error message which I found out indicated that 
inetd.conf was missing the right entry.

So I added the following line to inetd.conf:
cvspserver  stream  tcp  nowait  root  /usr/bin/cvs
cvs --allow-root=/usr/cvsroot pserver
[all on one line]

and another line to /etc/services
cvspserver  2401/tcp

Then I try to telnet my server. This works but I do not get the "bad 
auth protocol" message. I get some cvs command line help telling me 
how to use cvs. (Usage ..)

I did also create a passwd file in /usr/cvsroot/CVSROOT and copied a 
encrypted password

When I try to login with WinCVS, I get the following output:
cvs login 
(Logging in to [EMAIL PROTECTED])
cvs [login aborted]: recv() from server 192.168.0.200: Connection 
reset by peer

I have the following CVSROOT set in my preferences:
:pserver:[EMAIL PROTECTED]:/usr/cvsroot

By the way: when I use the wrong username or the wrong password 
nothing changes.

Thanks for you help!