Return-Path: X-Original-To: apmail-subversion-users-archive@minotaur.apache.org Delivered-To: apmail-subversion-users-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4B06918862 for ; Thu, 9 Jul 2015 05:12:00 +0000 (UTC) Received: (qmail 16384 invoked by uid 500); 9 Jul 2015 05:11:59 -0000 Delivered-To: apmail-subversion-users-archive@subversion.apache.org Received: (qmail 16352 invoked by uid 500); 9 Jul 2015 05:11:59 -0000 Mailing-List: contact users-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list users@subversion.apache.org Received: (qmail 16342 invoked by uid 99); 9 Jul 2015 05:11:59 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Jul 2015 05:11:59 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_HELO_PASS X-Spam-Check-By: apache.org Received-SPF: error (nike.apache.org: local policy) Received: from [80.67.31.26] (HELO smtprelay03.ispgateway.de) (80.67.31.26) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Jul 2015 05:09:44 +0000 Received: from [67.198.113.253] (helo=poppins.internal.rootmac.net) by smtprelay03.ispgateway.de with esmtpsa (TLSv1:DHE-RSA-AES256-SHA:256) (Exim 4.84) (envelope-from ) id 1ZD46N-0005kI-HY; Thu, 09 Jul 2015 07:10:27 +0200 Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2102\)) Subject: Re: Svnserve port issue with Apache From: Ryan Schmidt In-Reply-To: Date: Thu, 9 Jul 2015 00:11:08 -0500 Cc: Subversion Users Content-Transfer-Encoding: quoted-printable Message-Id: References: To: Prakash Reddy X-Mailer: Apple Mail (2.2102) X-Df-Sender: MzY4ODE4 X-Virus-Checked: Checked by ClamAV on apache.org On Jul 8, 2015, at 11:14 PM, Prakash Reddy wrote: >=20 > There was an Apache application running on a a linux server and = recently I installed svnserve using the below rpm files as per one of = the google site. After that the svn link is working fine but my other = application link running on apache earlier is not working now. > =20 > =E2=80=A2 - httpd-2.2.9-1.fc9.i386.rpm=20 > =E2=80=A2 - mod_dav_svn.i386 0:1.4.6-7=20 > =E2=80=A2 - subversion.i386 0:1.4.6-7 > =20 > So seems the problem is with the port , where both are looking for = default port of 8080 > =20 > So how can I change the port of svn alone and my other application = will run as it is like earlier. When you are using Apache Subversion's mod_dav_svn in Apache httpd, = Subversion access will occur on the port(s) you have configured Apache = httpd to use. You cannot change the port that svn alone will use, and = still have the same httpd serve other web traffic on a different port. Options include running a second httpd instance (one for your svn http = traffic, one for your other http traffic), or using svnserve instead of = mod_dav_svn in httpd. However, there should be no problem running mod_dav_svn within httpd and = also serving other web traffic at the same time. What problem did you = encounter?