hello dear linuxquestions guys
first off, i don't dare to mention how much time i invested in solving this problem and yet haven't done so.
i installed svn 1.6.11 on my centOS 5.6 server and can't get it to run, i always get
Could not open the requested SVN filesystem.
here are my infos:
the repository i created with
svnadmin create yumyum resides in
/var/www/svn/repos/. it's been chown'ed recursively and also chmod'ed several times.
Code:
drwxr-xr-x 6 apache apache 4096 Jul 12 01:32 yumyum
within my
httpd.conf it looks like this:
Code:
LoadModule dav_svn_module modules/mod_dav_svn.so
LoadModule authz_svn_module modules/mod_authz_svn.so
<Location /svn>
DAV svn
AuthType Basic
AuthName "Subversion repository"
AuthUserFile /var/www/svn/.svn-auth
# AuthzSVNAccessFile /var/www/svn/.svn-policy
Require valid-user
SVNParentPath /var/www/svn/repos
# SVNPath /var/www/svn/repos/yumyum
SVNListParentPath on
</Location>
the
http://SERVERADDR/svn works fine, lists all repositories. but
http://SERVERADDR/svn/yumyum returns said Could not open the requested SVN filesystem (errcode 13).
i tail'ed the httpd error log output:
Code:
[Tue Jul 12 01:02:50 2011] [error] [client INSERTMYIPHERE] (20014)Internal error: Can't open file '/var/www/svn/repos/yumyum/format': Permission denied
[Tue Jul 12 01:02:50 2011] [error] [client INSERTMYIPHERE] Could not fetch resource information. [500, #0]
[Tue Jul 12 01:02:50 2011] [error] [client INSERTMYIPHERE] Could not open the requested SVN filesystem [500, #13]
[Tue Jul 12 01:02:50 2011] [error] [client INSERTMYIPHERE] Could not open the requested SVN filesystem [500, #13]
so i checked the permissions within /var/www/svn/repos/yumyum:
Code:
drwxr-xr-x 2 apache apache 4096 Jul 12 01:32 conf
drwxr-sr-x 6 apache apache 4096 Jul 12 01:32 db
-rwxrwxrwx 1 apache apache 2 Jul 12 01:32 format
drwxr-xr-x 2 apache apache 4096 Jul 12 01:32 hooks
drwxr-xr-x 2 apache apache 4096 Jul 12 01:32 locks
-rw-r--r-- 1 apache apache 229 Jul 12 01:32 README.txt
also SELinux is disabled.
i hope someone can point me to where i could tame this svn. all answers are appreciated, thanks in advance.
cpt