2014-04-27 15 views
9

Abbiamo un server SVN Linux (Apache/2.2.22 (Unix) DAV/2 SVN/1.7.6 mod_ssl/2.2.22 e OpenSSL/0.9.8x) e talvolta riceviamo i seguenti errori nei file di log degli errori.Errore del server SVN: il provider ha riscontrato un errore durante lo streaming di una risposta REPORT. [500, # 0]

I client utilizzano un'applicazione JAVA che sincronizza i dati dal repository tramite HTTPS. L'applicazione client utilizza i seguenti componenti:

  • svnclientadapter-1.8.0.jar
  • svnjavahl-1.7.4.jar

file di registro mostra:

[Thu Apr 24 21:03:39 2014] [error] [client 70.198.65.85] Provider encountered an error while streaming a REPORT response. [500, #0] 
[Thu Apr 24 21:03:39 2014] [error] [client 70.198.65.85] A failure occurred while driving the update report editor [500, #103] 
[Thu Apr 24 21:03:39 2014] [error] [client 70.198.65.85] Error writing base64 data: Software caused connection abort [500, #103] 
[Thu Apr 24 21:28:33 2014] [error] [client 70.198.65.85] Provider encountered an error while streaming a REPORT response. [500, #0] 
[Thu Apr 24 21:28:33 2014] [error] [client 70.198.65.85] A failure occurred while driving the update report editor [500, #103] 
[Thu Apr 24 21:28:33 2014] [error] [client 70.198.65.85] Error writing base64 data: Software caused connection abort [500, #103] 

Qualcuno hai qualche idea? Grazie in anticipo

+0

Nel mio caso, il problema era un filtro di sostituzione delle stringhe che avevo su un server proxy inverso intermedio. Ho rimosso il filtro per la sostituzione delle stringhe e tutto andava bene. –

risposta

1

tenta di installare apache2-mpm-prefork sul server SVN, se non lo avete ancora, in Ubuntu può essere fatto con

sudo apt-get install apache2-mpm-prefork 

Abbiamo avuto problema simile, nel nostro caso questo problema è apparso quando abbiamo avuto più di un cliente alla volta.

+0

Quando suggerisci una soluzione a un problema, potresti spiegare di cosa si tratta (ad esempio, cos'è apache2-mpm-prefork?) E perché questo potrebbe funzionare? – dokaspar

Problemi correlati