From owner-freebsd-questions@FreeBSD.ORG Tue Jan 25 15:58:16 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 302BE16A4CE for ; Tue, 25 Jan 2005 15:58:16 +0000 (GMT) Received: from kane.otenet.gr (kane.otenet.gr [195.170.0.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 289F243D31 for ; Tue, 25 Jan 2005 15:58:10 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from orion.daedalusnetworks.priv (aris.bedc.ondsl.gr [62.103.39.226])j0PFw7cE003230; Tue, 25 Jan 2005 17:58:07 +0200 Received: by orion.daedalusnetworks.priv (Postfix, from userid 1001) id F15DE2A475; Tue, 25 Jan 2005 17:58:06 +0200 (EET) Date: Tue, 25 Jan 2005 17:58:06 +0200 From: Giorgos Keramidas To: Chris Knipe Message-ID: <20050125155806.GA18959@orion.daedalusnetworks.priv> References: <005901c502ef$3bda51d0$0a01a8c0@ops.cenergynetworks.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <005901c502ef$3bda51d0$0a01a8c0@ops.cenergynetworks.com> cc: freebsd-questions@freebsd.org Subject: Re: CVS Blues X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Jan 2005 15:58:16 -0000 On 2005-01-25 17:04, Chris Knipe wrote: > I'm trying to get a CVS Repositry running via pserver. After allot > of googling, I managed to get the server up and authentication > working via the internal passwd file. > > However, as soon as I log in to the repositry (via wincvs), the cvs > process on the server core dumps with sig 11 > > Jan 25 17:00:12 netsphere xinetd[87286]: Started working: 1 available service > Jan 25 17:00:21 netsphere /kernel: pid 87296 (cvs), uid 89: exited on signal 11 You should probably try building a debug version of cvs and obtain a crash dump of the server: # cd /usr/src/gnu/usr.bin/cvs # make cleandir # make cleandir # env CFLAGS='-O -ggdb' make obj all install Then, start a CVS server as a non-root user (if it starts as root, it will not dump a core file when it crashes) and try again. Once you have a cvs.core file mail me and I'll help you use gdb to find out why it crashes. Knowing what version of FreeBSD and CVS you have may help a bit too. - Giorgos