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

Apache 2.2.3 segmentation fault with 1.4.0 on Linux

From: <DHAJOGLO_at_smumn.edu>
Date: 2006-10-26 23:23:07 CEST

I'm installing a new server on Linux to replace my windoze subversion server. I verified that svnserve -d -r /path/to/repo works locally and remotely with svn on another Linux box. After install I can start Apache successfully:

[notice] Apache/2.2.3 (Unix) DAV/2 SVN/1.4.0 configured -- resuming normal operations

But, after the first request to a static webpage I get an immediate segmentation fault http://ip/

[notice] child pid 5993 exit signal Segmentation fault (11)

If I omit the authz module then I only get the segmentation fault when trying to access the actual location of the repository:

LoadModule dav_svn_module modules/mod_dav_svn.so
#LoadModule authz_svn_module modules/mod_authz_svn.so

http://ip/index.html <- works
http://ip/svn/demo <- segmentation fault, same as above.

I put apache into single user mode with debug loglevel debug:

[command]# ../bin/httpd -e debug -X -f conf/httpd.conf
[debug] mod_so.c(246): loaded module dav_svn_module
[debug] mod_so.c(246): loaded module authz_svn_module

from error_log:
[debug] mod_so.c(246): loaded module dav_svn_module
[debug] mod_so.c(246): loaded module authz_svn_module

Request http://ip/ produces segmentation fault with no additional information.

Install base:
Subversion:
1.4.0 config options:
./configure --prefix=/usr/local --with-apxs=/usr/local/httpd/bin/apxs --enable-maintainer-mode

Apache:
2.2.3 config options:
--prefix=/usr/local/Apache-2.2.3 --enable-dav --enable-so -enable-maintainer-mode

Location directive in httpd.conf:

<Location /svn>
        DAV svn
        SVNPath /opt/svn
        AuthType Basic
        AuthName "Subversion"
        AuthUserFile /usr/local/httpd/conf/passwdSVN
</Location>

Any ideas?

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Thu Oct 26 23:17:29 2006

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.