[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: FC1 and SVN

From: Ravi Shekhar <rxs141_at_po.cwru.edu>
Date: 2004-07-07 01:14:17 CEST

David Summers wrote:

>On Tue, 6 Jul 2004, Ravi Shekhar wrote:
>
>
>
>>Just offhand, I had a lot of trouble running a subversion server through
>>apache on FC1, in the end giving up. When I tried the same config in
>>FC2, or any other system, it worked flawlessly, so it leads me to
>>believe there is some problem with either the FC1 apache or perhaps the
>>subversion rpms compiled against it.
>>
>>
>>
>
>What problems did you have? Can you detail them? I would like to fix as
>many as possible.
>
>I don't run a server on FC1 (don't even have FC1 now) so I can try to fix
>them but someone else will have to test them out.
>
>If someone wants to take over maintenance of the
>subversion/packages/rpm/fedora directory (for FC1) please let me know.
>
>If you can maintain and produce the RPMs then I'll be glad to put them up
>on my server.
>
>
>
Well, this was a while ago, I'm guessing early/mid May. I was using 1.04
rpms and I couldn't get apache to "see" the repository. So something
like what's below. The problem was that it was acting like the
repository didn't exist, or permissions weren't right, basically File
Not Found errors "Could not open the requested SVN filesystem".
Permissions were correct, I checked at least twenty times. I'm not sure
why it happened. But since then I've moved to FC2, and I've had no
problems since. I don't really have a way to test FC1 now, so I don't
really know if I can be much help fixing the problem. For all I know,
these problems might not be occurring after 1.04.

Ravi

cd /home/apache
svnadmin create website
htpasswd -cs password $USER
chown -R apache:apache .

<Location /svn>
    DAV svn
    SVNParentPath /home/apache
    AuthType Basic
    AuthName "Subversion"
    AuthUserFile /home/apache/password
    Require valid-user
</Location>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Wed Jul 7 01:15:08 2004

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.