From owner-freebsd-questions@FreeBSD.ORG Sun Mar 23 16:29:50 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 82C73106564A for ; Sun, 23 Mar 2008 16:29:50 +0000 (UTC) (envelope-from darrell.blake@gmail.com) Received: from wa-out-1112.google.com (wa-out-1112.google.com [209.85.146.182]) by mx1.freebsd.org (Postfix) with ESMTP id 47FE48FC1E for ; Sun, 23 Mar 2008 16:29:49 +0000 (UTC) (envelope-from darrell.blake@gmail.com) Received: by wa-out-1112.google.com with SMTP id k17so2819539waf.3 for ; Sun, 23 Mar 2008 09:29:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; bh=wXjwQSPG0BVqEZ+KGcEHoaiGhyE141ckIki3A9/Dwnw=; b=eHIiTSU+HkEHOtu50oiG5PEN9get7xHR2svrtRVcojxp97U3DrhzX3D1jjVuRk+U0s+N6wjvq6gMHj2iZUxIxrqYCOrOHiKc5iVP+r4muGmlh9Ytu+H4zVRj/Ovddq9aojtBiWq7x++77XThuyAPSJXzmDh8vcAWFWWORyBbA8A= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=p4HSex/9JghQNSBBPVgRLaAW0gB+c1oCX6Eyagw0eYYR4S3KNh5p6qai/pfIRA6CpxePysuLmfjpnCK8snLK2r3koOvRQbntSrgzAqTeiCmWxucusjUKDDR1F0M+ZHyFwXUZG606OMccvV5F/eeQh511GouyWqEgDbFS3CJbaU8= Received: by 10.114.156.1 with SMTP id d1mr9568419wae.68.1206288109791; Sun, 23 Mar 2008 09:01:49 -0700 (PDT) Received: by 10.114.56.13 with HTTP; Sun, 23 Mar 2008 09:01:48 -0700 (PDT) Message-ID: <15c45fbc0803230901w112ccdadn8277efc0a4fc7246@mail.gmail.com> Date: Sun, 23 Mar 2008 16:01:48 +0000 From: "Darrell Blake" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: Subversion and FreeBSD permission problems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: darrell@dunmanifestin.co.uk List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Mar 2008 16:29:50 -0000 I'm fairly new to FreeBSD and SVN but myself and a few developer friends are undertaking a small project and I've been tasked with getting the source control working. I decided to use FreeBSD for the server for numerous reasons, stability and security among them. I'm no stranger to Unix, however, I've been using Linux for a long time. Anyway, my server is up and running and I've install svn via the ports system (acquire from portsnap). I have set up a repository in /usr/local/svn/repository via "svnadmin create /usr/local/svn/repository" and imported a test project into it via "svn import TestProject file:///usr/local/svn/repository/TestProject". I then fired off the deamon server via "svnserve -d -r /usr/local/svn/repository" which all seems to have worked well. The thing is, I can't actually perform a checkout of the repository via the server. If I move into a temp directory and do "svn checkout file:///usr/local/svn/repository/TestProject" it works fine but if I do "svn svn://127.0.0.1/TestProject" I get an error stating "svn: Can't connect to host '127.0.0.1': Connection refused". Also, if I try and use TortoiseSVN to browse the repository externally I get an error stating "Error * Can't connect to host '192.168.0.10': No connection could be made because the target machine actively refused it." Does anyone have any idea what I could be doing wrong? I've been reading the free O'Reilly Subversion book but I'm a bit clueless. I suspect it's something to do with permissions on FreeBSD but I just don't know enough about it =o)