I've got MAMP running (XAMP for OSX), and I'm trying to setup subversion.

When I go to the freshly created repository in my browser, I get:

<D:error>
<C:error/>
<m:human-readable errcode="2">
Could not open the requested SVN filesystem
</m:human-readable>
</D:error>

The repository is setup in ~/server/svn. My html/php files are also there (~/server/http), and it works fine. My basic httpd.conf setup:

<Location /svn>
DAV svn
SVNPath ~/server/svntest
(Authenticaton will be added later)
</Location>

I've allready chmod'ed everything to 777

drwxrwxrwx   9 gerrit  staff       306 27 okt  2008 svn

Apache's errorlog does not show any errors.

How do I troubleshoot this?

link|improve this question

feedback

7 Answers

up vote 3 down vote accepted

What is ~/server/svntest? The web server doesn't normally have a home dir or even shell access, try substituting it for a full path.

link|improve this answer
Bingo! I replaced ~ by /Users/gerrit, and now it works – Gerrit Jun 13 '09 at 19:21
feedback

Try running

svnadmin verify ~/svntest/svn

on the repository. If that reports errors, run:

svnadmin recover ~/svntest/svn
link|improve this answer
It verifies. I'm not surprised, because its a fresh repostitory. I just created it. – Gerrit Jun 13 '09 at 19:19
feedback

Change SELinux security context for repository files:

# chcon --reference=/var/www/html -R /var/svn/repos
# ll -Z /var/svn/repos
drwxr-xr-x  apache apache system_u:object_r:httpd_sys_content_t /var/svn/repos
link|improve this answer
I don't think this was the problem that Gerrit had, but it did solve my problem, so thanks! – David Hogue Oct 18 '11 at 20:21
feedback

Had this problem and found it was caused by an incompatible version of SVNadmin and Apache. I had upgraded SVN on the machine (and forgotten that I had). I just used the full path (/usr/local/subversion-1.3.0/bin/svnadmin on my old CentOS machine) to the old svnadmin bin (version 1.3, as opposed to 1.6.11 which I had upgraded to). Then it worked immediately. No file permission issues.

link|improve this answer
feedback

You should try:

ln -s /home/subversion/repos /var/www/html/
link|improve this answer
feedback

ln -s /home/subversion/repos /var/www/html/

you should NOT do that... access for "everyone"... without svn, svn-user, ...

link|improve this answer
feedback

change permissions to chown -R apache:apache /your repo

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.