From owner-freebsd-questions@FreeBSD.ORG Sat May 20 18:34:06 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 E4DD916A485 for ; Sat, 20 May 2006 18:34:06 +0000 (UTC) (envelope-from petermichaux@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.174]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4AB3443D48 for ; Sat, 20 May 2006 18:34:06 +0000 (GMT) (envelope-from petermichaux@gmail.com) Received: by ug-out-1314.google.com with SMTP id m3so978374uge for ; Sat, 20 May 2006 11:34:05 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=ac4O1Cw/6xKZI0Ypu4h5srhGMijwktaf7OajS2pCqkaQgoBvqHzLzWwcnmXfdUVS0sX1aiX+zcru8PieymRZmToo2eJUI8wFay4dObzUXgM1/urnZejzi6g/CKmskt39wwP2u2UeFjSgURcOeb4y/vhO5g1Ld1mOlilzzB7GhPI= Received: by 10.78.58.11 with SMTP id g11mr816555hua; Sat, 20 May 2006 11:34:05 -0700 (PDT) Received: by 10.78.34.4 with HTTP; Sat, 20 May 2006 11:34:05 -0700 (PDT) Message-ID: <3cbaf1c80605201134w1efd54advda6537b077150c9c@mail.gmail.com> Date: Sat, 20 May 2006 11:34:05 -0700 From: "Peter Michaux" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: controlling ports: connection refused X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 May 2006 18:34:07 -0000 Hi, I'm having fun getting things working with FreeBSD. Hopefully I won't have too many questions for you guys but another speedbump. This looks like a SVN question but I think it is really a FreeBSD question. I have Mac OS X 10.3.9 on one computer and FreeBSD 6.1 on another. They are both connected to my router. If I start a webserver (Webrick for a Rails web applications) on the FreeBSD machine, then I can view the website on my Mac by navigating to "http://192.168.0.103:3000/". So I know the two machines can talk to each other. On the FreeBSD machine I created an svn repository, did an initial "svn import" and can checkout the repostitory two ways. This is all on the FreeBSD machine. # cd /home/peter/ # svn checkout file:///home/peter/projectA Checked out revision 1 # cd /home/peter/ # svnserve -d -r /home/peter/proj # svn checkout svn://localhost/projectB checkout out revision 1 So I know svn is working. Now I would like to do a checkout on the Mac $ svn checkout svn://192.168.0.103/projectB subversion/libsvn_ra_svn/client.c:141: (apr_err=61) svn: Can't connect to host '192.168.0.103': Connection refused $ svn checkout svn://192.168.0.103:3690/projectB subversion/libsvn_ra_svn/client.c:141: (apr_err=61) svn: Can't connect to host '192.168.0.103': Connection refused Any ideas what I should do? On my mac I tried $ telnet 192.168.0.103 3000 Trying 192.168.0.103... Connected to 192.168.0.103. but when I try port 3690 (the default port for svn) $ telnet 192.168.0.103 3690 Trying 192.168.0.103... telnet: connect to address 192.168.0.103: Connection refused telnet: Unable to connect to remote host Thanks, Peter Thanks, Peter