Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why do I get “svn: E120106: ra_serf: The server sent a truncated HTTP response body” error? [duplicate]

Tags:

I am using svn 1.8.9 and while checking out trunk code I am getting following error

svn: E120106: ra_serf: The server sent a truncated HTTP response body.

Because of above error I am not able to check out entire trunk code. Please suggest approach for resolving this.

Thanks

like image 913
Dhiraj Avatar asked Dec 03 '14 09:12

Dhiraj


2 Answers

I had the same issue and since it is a big checkout but don't have access to extend the server timeout, solved it by issuing:

$ svn cleanup $ svn up 

Each time I got this error (until the checkout was complete).

like image 187
quobit Avatar answered Sep 20 '22 04:09

quobit


This is apache server problem related to timeout (SVN client dont work as it's needed with huge number of big files). Put here on httpd.conf and do a restart of httpd, and problem will be resolved, without future needs to do cleanup and update:

Timeout 12000 KeepAlive On MaxKeepAliveRequests 100 KeepAliveTimeout 15 
like image 42
Kompjuteras Avatar answered Sep 17 '22 04:09

Kompjuteras