public inbox for overseers@sourceware.org
 help / color / mirror / Atom feed
* CVS down?
@ 2011-03-23 14:45 Stanislav Meduna
  2011-03-23 21:00 ` Ian Lance Taylor
  0 siblings, 1 reply; 9+ messages in thread
From: Stanislav Meduna @ 2011-03-23 14:45 UTC (permalink / raw)
  To: overseers

Hi,

are there currently issues with the anonymous CVS at sourceware?
I was able to update from an eCos CVS repository - veeery slow -
but most of the time it fails, e.g.:

$ cvs -d :pserver:anoncvs@ecos.sourceware.org:/cvs/ecos login
Logging in to :pserver:anoncvs@ecos.sourceware.org:2401:/cvs/ecos
CVS Password:
cvs [login aborted]: Service temporarily unavailable, please try again later

I am seeing this problem for at least a day (other people using
the server report 2 days).

Thanks
-- 
                                Stano

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: CVS down?
  2011-03-23 14:45 CVS down? Stanislav Meduna
@ 2011-03-23 21:00 ` Ian Lance Taylor
  0 siblings, 0 replies; 9+ messages in thread
From: Ian Lance Taylor @ 2011-03-23 21:00 UTC (permalink / raw)
  To: Stanislav Meduna; +Cc: overseers

Stanislav Meduna <stano@meduna.org> writes:

> are there currently issues with the anonymous CVS at sourceware?
> I was able to update from an eCos CVS repository - veeery slow -
> but most of the time it fails, e.g.:
>
> $ cvs -d :pserver:anoncvs@ecos.sourceware.org:/cvs/ecos login
> Logging in to :pserver:anoncvs@ecos.sourceware.org:2401:/cvs/ecos
> CVS Password:
> cvs [login aborted]: Service temporarily unavailable, please try again later
>
> I am seeing this problem for at least a day (other people using
> the server report 2 days).

We've been seeing very high load averages on sourceware.org recently.
We're investigating to find out why.  When the load average is high,
anonymous CVS is automatically disabled.  Our apologies for the
inconvenience.

Ian

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: CVS down?
  2012-10-20 17:19     ` Ian Lance Taylor
@ 2012-10-22 17:15       ` Corinna Vinschen
  0 siblings, 0 replies; 9+ messages in thread
From: Corinna Vinschen @ 2012-10-22 17:15 UTC (permalink / raw)
  To: overseers

On Oct 20 10:17, Ian Lance Taylor wrote:
> Corinna Vinschen <vinschen@redhat.com> writes:
> 
> > On Oct 20 10:56, Frank Ch. Eigler wrote:
> >> Hi -
> >> 
> >> >   ssh: connect to host sources.redhat.com port 22: Connection timed out
> >> >   cvs [commit aborted]: end of file from server (consult above messages if any)
> >> 
> >> Please use the domain name sourceware.org instead.
> >> The sources.redhat.com dns alias is going away.
> >
> > Ok, thanks.  The behaviour is *quite* annoying and irritating for long
> > living local CVS trees.
> 
> CVS gets the server from the CVS/Root files.  You can use a sed script
> to s/sources.redhat.com/sourceware.org/ .

Yes, I can and I did *after* I learned the reason.

But it does neither change the annoyance factor nor the irritation when
a CVS tree suddenly stops working for no apparent reason.


Corinna

-- 
Corinna Vinschen
Cygwin Project Co-Leader
Red Hat

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: CVS down?
  2012-10-20 17:18   ` Corinna Vinschen
  2012-10-20 17:19     ` Ian Lance Taylor
@ 2012-10-20 17:26     ` Gerald Pfeifer
  1 sibling, 0 replies; 9+ messages in thread
From: Gerald Pfeifer @ 2012-10-20 17:26 UTC (permalink / raw)
  To: Corinna Vinschen; +Cc: overseers

On Sat, 20 Oct 2012, Corinna Vinschen wrote:
> Ok, thanks.  The behaviour is *quite* annoying and irritating for long 
> living local CVS trees.

Years ago I have used the script below in a case like this.  Looking
at it again, it has room for improvement, but...it worked. ;-)

Gerald


#!/bin/sh

OLD=".*PROJ.*"
NEW=gerald@server.project.name.:/home/ncvs

#VERBOSE=true

########

printf "Replacing %s\n       by %s\n" $OLD $NEW

find . -name Root | while read f; do
    if [ -n "$VERBOSE" ]; then
        echo "Checking $f"
    fi
    egrep "^${OLD}$" $f > /dev/null
    if [ $? -eq 0 ] && [ -f `dirname $f`/Repository ]; then
        if [ -w $f ]; then
            printf "Updating $f\n"
            printf "$NEW\n" > $f
        else
            printf "$f is read-only.\n"
        fi
    fi
done

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: CVS down?
  2012-10-20 17:18   ` Corinna Vinschen
@ 2012-10-20 17:19     ` Ian Lance Taylor
  2012-10-22 17:15       ` Corinna Vinschen
  2012-10-20 17:26     ` Gerald Pfeifer
  1 sibling, 1 reply; 9+ messages in thread
From: Ian Lance Taylor @ 2012-10-20 17:19 UTC (permalink / raw)
  To: overseers

Corinna Vinschen <vinschen@redhat.com> writes:

> On Oct 20 10:56, Frank Ch. Eigler wrote:
>> Hi -
>> 
>> >   ssh: connect to host sources.redhat.com port 22: Connection timed out
>> >   cvs [commit aborted]: end of file from server (consult above messages if any)
>> 
>> Please use the domain name sourceware.org instead.
>> The sources.redhat.com dns alias is going away.
>
> Ok, thanks.  The behaviour is *quite* annoying and irritating for long
> living local CVS trees.

CVS gets the server from the CVS/Root files.  You can use a sed script
to s/sources.redhat.com/sourceware.org/ .

Ian

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: CVS down?
  2012-10-20 15:32 ` Frank Ch. Eigler
@ 2012-10-20 17:18   ` Corinna Vinschen
  2012-10-20 17:19     ` Ian Lance Taylor
  2012-10-20 17:26     ` Gerald Pfeifer
  0 siblings, 2 replies; 9+ messages in thread
From: Corinna Vinschen @ 2012-10-20 17:18 UTC (permalink / raw)
  To: overseers

On Oct 20 10:56, Frank Ch. Eigler wrote:
> Hi -
> 
> >   ssh: connect to host sources.redhat.com port 22: Connection timed out
> >   cvs [commit aborted]: end of file from server (consult above messages if any)
> 
> Please use the domain name sourceware.org instead.
> The sources.redhat.com dns alias is going away.

Ok, thanks.  The behaviour is *quite* annoying and irritating for long
living local CVS trees.


Corinna

-- 
Corinna Vinschen
Cygwin Project Co-Leader
Red Hat

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: CVS down?
  2012-10-20 14:57 Corinna Vinschen
@ 2012-10-20 15:32 ` Frank Ch. Eigler
  2012-10-20 17:18   ` Corinna Vinschen
  0 siblings, 1 reply; 9+ messages in thread
From: Frank Ch. Eigler @ 2012-10-20 15:32 UTC (permalink / raw)
  To: overseers

Hi -

>   ssh: connect to host sources.redhat.com port 22: Connection timed out
>   cvs [commit aborted]: end of file from server (consult above messages if any)

Please use the domain name sourceware.org instead.
The sources.redhat.com dns alias is going away.

- FChE

^ permalink raw reply	[flat|nested] 9+ messages in thread

* CVS down?
@ 2012-10-20 14:57 Corinna Vinschen
  2012-10-20 15:32 ` Frank Ch. Eigler
  0 siblings, 1 reply; 9+ messages in thread
From: Corinna Vinschen @ 2012-10-20 14:57 UTC (permalink / raw)
  To: overseers

Hi guys,

I'm getting

  ssh: connect to host sources.redhat.com port 22: Connection timed out
  cvs [commit aborted]: end of file from server (consult above messages if any)

for about an hour now.

Can somebody pleae have a look?


Thanks,
Corinna

-- 
Corinna Vinschen
Cygwin Project Co-Leader
Red Hat

^ permalink raw reply	[flat|nested] 9+ messages in thread

* CVS down?
@ 2003-07-12 18:53 Andreas Jaeger
  0 siblings, 0 replies; 9+ messages in thread
From: Andreas Jaeger @ 2003-07-12 18:53 UTC (permalink / raw)
  To: overseers


Trying to connect to gcc.gnu.org I get a timeout:

cvs up gcc/ChangeLog
cvs [update aborted]: connect to gcc.gnu.org(67.72.78.213):2401 failed: Connection timed out
gromit:/cvs/gcc:[1]$ 

Andreas
-- 
 Andreas Jaeger, aj@suse.de, http://www.suse.de/~aj
  SuSE Linux AG, Deutschherrnstr. 15-19, 90429 Nürnberg, Germany
   GPG fingerprint = 93A3 365E CE47 B889 DF7F  FED1 389A 563C C272 A126

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2012-10-20 17:26 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-03-23 14:45 CVS down? Stanislav Meduna
2011-03-23 21:00 ` Ian Lance Taylor
  -- strict thread matches above, loose matches on Subject: below --
2012-10-20 14:57 Corinna Vinschen
2012-10-20 15:32 ` Frank Ch. Eigler
2012-10-20 17:18   ` Corinna Vinschen
2012-10-20 17:19     ` Ian Lance Taylor
2012-10-22 17:15       ` Corinna Vinschen
2012-10-20 17:26     ` Gerald Pfeifer
2003-07-12 18:53 Andreas Jaeger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).