I have installed Subversion on a server, and are trying to reach the repository through my network and Apache.
If I check out a local copy, on the server, everything woks fine, but through the network I can't get it to work.
On the server I write:
svn checkout file:///Data/Svn/repos/Linuxkurs Testdok01
Through the network I write:
svn checkout
https://192.168.0.10/svn/Linuxkurs/ Dokumentation/Linuxkurs
and get an answer:
svn: PROPFIND request failed on '/svn/Linuxkurs'
svn:
Could not open the requested SVN filesystem
This is my configuration in httpd.conf:
#Subversion Configuration
<Location /svn>
DAV svn
SVNParentPath /Data/Svn/repos
</Location>
Apache run as:
User nobody
Group nobody
in httpd.conf.
The owner to the directory Svn, including subdirectories, is nobody with full permissions.
In the Apache error-log it says:
[Fri Nov 26 21:04:55 2004] [client 192.168.0.134] (20014)Error string not specified yet: Can't open file '/Data/Svn/repos/Linuxkurs/format': No such file or directory
[Fri Nov 26 21:04:55 2004] [error] [client 192.168.0.134] Could not fetch resource information. [500, #0]
[Fri Nov 26 21:04:55 2004] [error] [client 192.168.0.134] Could not open the requested SVN filesystem [500, #2]
[Fri Nov 26 21:04:55 2004] [error] [client 192.168.0.134] Could not open the requested SVN filesystem [500, #2]
Can anyone tell me what I have missed???