info-cvs
[Top][All Lists]
Advanced

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

Re: trouble with pserver : inetd go down for ten minutes !


From: Matt Riechers
Subject: Re: trouble with pserver : inetd go down for ten minutes !
Date: Tue, 12 Feb 2002 09:41:16 -0500

Patrick Goldbronn - SFME/LGLS wrote:
> 
> When I do a script that ask for a list of cvs file to do an action like
> this :
> 
> for f in "$files_list"
> do
> cvs log $f
> done

> When I see in log file, I find :
> inetd[13407]: cvspserver/tcp server failing (looping or being flooded),

Each time you run a cvs command, it opens a connection to the server, and the
number of times you're calling cvs is over the server's connection limit. Some
solutions/workarounds:

1. Avoid putting cvs calls in loops. Instead, do something like 'cvs log
$files_list' or 'find files |xargs cvs log'
2. run the script on the cvs server machine (local mode)

> I suppose cvs server can support many clients requests at same time but
> I'm not sure !

It can, but it depends on inetd to manage those requests, so it also depends on
its limitations.

-Matt



reply via email to

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