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

Segmentation fault with subversion

From: Guenther Sohler <guenther.sohler_at_gmx.at>
Date: 2006-02-16 14:55:53 CET

Hallo Group, I have a problem with a Segmentation fault with subversion.
Here is my configuration:

I have a ITX running compiled linux linux-2.6.14.2.
I am using a compiled compiler gcc (GCC) 4.0.2
 with the uClibC Library.
I have successfully running apache httpd-2.2.0 with php-5.1.2.
Additionally I use subversion-1.1.4
My intention is to setup a repository over internet.
Compilation was almost fine. I just had to enter
typedef long long apr_int64_t;
into
httpd/include/apr.h because it was nowhere defined(probably because of using
uClibC

else compilation was straightforward

I am using following httpd.conf

----
                                                                            
                              
ServerTokens OS
ServerRoot "/etc/httpd"
PidFile /tmp/httpd.pid
Listen 80
                                                                            
                              
LoadModule php5_module          modules/libphp5.so
LoadModule dav_module           modules/mod_dav.so
LoadModule dav_svn_module       modules/mod_dav_svn.so
                                                                            
                              
                                                                            
                              
AddType application/x-httpd-php .php .phtml
AddType application/x-httpd-php-source .phps
                                                                            
                              
User apache
Group apache
                                                                            
                              
ServerAdmin guenther.sohler@gmx.at
ServerName 194.208.18.155
                                                                            
                              
                                                                            
                              
DocumentRoot "/home/apache/www"
                                                                            
                              
<Directory />
    Options FollowSymLinks
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>
                                                                            
                              
<Location /svn>
        DAV svn
        SVNPath /home/svn/repository
        SVNIndexXSLT "/svnindex.xsl"
        AuthType Basic
        AuthName "Subversion repository"
        AuthUserFile /etc/httpd/conf/svn-auth-file
        Require valid-user
</Location>
 
 
 
<FilesMatch "^\.">
    Order allow,deny
    Deny from all
</FilesMatch>
 
ErrorLog /tmp/httpd.errorlog1
LogLevel warn
DefaultType text/plain
----
I have setup a repository at /home/svn/repository and it works fine locally
using svn file:/// ... for 'svn list' and 'svn co'
Browsing the repository via my browser also works fine
A remote svn list http://194.208.18.166/svn also works fine.
Just when I do a
svn co http://194.208.18.155 it does not work anymore
it looks like:
[gigl_at_pc gigl]$ svn co http://192.168.10.1/svn
svn: REPORT Anfrage fehlgeschlagen auf '/svn/!svn/vcc/default'
svn: REPORT von '/svn/!svn/vcc/default': Could not read status line:
connection was closed by server. (http://192.168.10.1)
[gigl@pc gigl]$
(note i use different ips, because this is my internal ip number)
Looking at the log file from http I can see the reason for it not working:
[Fri Feb 10 21:09:37 2006] [notice] Apache/2.2.0 (Unix) configured --
resuming normal operations
[Fri Feb 10 21:54:01 2006] [notice] child pid 603 exit signal Segmentation
fault (11)
[Fri Feb 10 21:54:01 2006] [notice] child pid 690 exit signal Segmentation
fault (11)
Does anybody have a clue, what is going wrong ?
What can I check, how can I trace the error ?
Thanx in advance for your suggestions
-- 
Telefonieren Sie schon oder sparen Sie noch?
NEU: GMX Phone_Flat http://www.gmx.net/de/go/telefonie
-- 
DSL-Aktion wegen großer Nachfrage bis 28.2.2006 verlängert:
GMX DSL-Flatrate 1 Jahr kostenlos* http://www.gmx.net/de/go/dsl
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Thu Feb 16 14:57:11 2006

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.