On Tue, Jun 10, 2008 at 3:50 PM, Holger Stratmann <tigris_at_finch.de> wrote:
>
>>> Please show us the section from your Apache-configuration where you set
>>> up
>>> Subversion.
>>> It should probably be a LOCATION-directive.
>>>
>>> You DID configure Subversion, right?
>>
>> Emphasize what you mean please. What configuration do I need to show
>> you? What was I supposed to configure for Subversion?
>
> http://svnbook.red-bean.com/nightly/en/svn.serverconfig.httpd.html
>
> Given that you know the book, I assume you've read this section?
>
> What I mean is something like
>
> <Location /repos>
> DAV svn
> SVNPath /var/svn/repository
> </Location>
>
> or
>
> <Location /svn>
> DAV svn
>
> # any "/svn/foo" URL will map to a repository /var/svn/foo
> SVNParentPath /var/svn
> </Location>
>
Hi all,
After much more investigation I now have more details on the error.
Below is the log file from /var/logs/apache2/error.log:
[Tue Jun 10 21:42:17 2008] [warn] module dav_module is already loaded, skipping
[Tue Jun 10 21:42:17 2008] [warn] module dav_svn_module is already
loaded, skipping
[Tue Jun 10 21:42:17 2008] [notice] Apache/2.2.8 (Ubuntu) DAV/2
SVN/1.4.6 configured -- resuming normal operations
[Tue Jun 10 22:32:30 2008] [error] [client 192.168.10.150] user root
not found: /svn/personal/projects/vfx/vfx
[Tue Jun 10 22:32:39 2008] [error] [client 192.168.10.150]
(20014)Internal error: Expected FS format '2'; found format '3'
[Tue Jun 10 22:32:39 2008] [error] [client 192.168.10.150] Could not
fetch resource information. [500, #0]
[Tue Jun 10 22:32:39 2008] [error] [client 192.168.10.150] Could not
open the requested SVN filesystem [500, #160043]
[Tue Jun 10 22:32:39 2008] [error] [client 192.168.10.150] Could not
open the requested SVN filesystem [500, #160043]
[Tue Jun 10 22:47:23 2008] [notice] caught SIGWINCH, shutting down gracefully
[Tue Jun 10 22:47:33 2008] [warn] module dav_module is already loaded, skipping
[Tue Jun 10 22:47:33 2008] [warn] module dav_svn_module is already
loaded, skipping
[Tue Jun 10 22:47:33 2008] [notice] Apache/2.2.8 (Ubuntu) DAV/2
SVN/1.4.6 configured -- resuming normal operations
[Tue Jun 10 22:53:45 2008] [error] [client 192.168.10.150] user root
not found: /svn/personal/projects/vfx/vfx
[Tue Jun 10 22:53:51 2008] [error] [client 192.168.10.150]
(20014)Internal error: Expected FS format '2'; found format '3'
[Tue Jun 10 22:53:51 2008] [error] [client 192.168.10.150] Could not
fetch resource information. [500, #0]
[Tue Jun 10 22:53:51 2008] [error] [client 192.168.10.150] Could not
open the requested SVN filesystem [500, #160043]
[Tue Jun 10 22:53:51 2008] [error] [client 192.168.10.150] Could not
open the requested SVN filesystem [500, #160043]
And below is the /etc/apache2/httpd.conf:
LoadModule dav_module modules/mod_dav.so
LoadModule dav_svn_module modules/mod_dav_svn.so
<Location /svn>
DAV svn
SVNParentPath /svn_root
AuthType Basic
AuthName "Subversion Repository"
AuthUserFile /etc/apache2/dav_svn.passwd
</Location>
Not sure what some of the errors mean in the error.log file. Help is
appreciated!
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe_at_subversion.tigris.org
For additional commands, e-mail: users-help_at_subversion.tigris.org
Received on 2008-06-11 05:58:00 CEST