tags:

views:

6698

answers:

4

I started getting this error today on my subversion repo when I try to update. Any suggestions?

svn: OPTIONS of 'http://example.org/example_repo': Could not read status line: connection was closed by server (http://example.org)

It appears that when I use the svn+ssh instead of HTTP, it works.

A: 

I believe it is a protocol issue. Have you recently changed any server setting regarding HTTP/HTTPS?

You could try and do an "svn relocate" to https://example.org/example_rep.

zodeus
No, I only have http access - no https
Joshua
+2  A: 

it worked for me. I tried HTTP when I should have HTTPS.

I referred to zodeus 's answer.
Yeah, you get this error if you put in http instead of https
RichardOD
A: 

Take a look to proxy configurations settings...try uncheck the use of it

John
It was a bad configuration on the HTTP server.
Joshua
A: 

My problem was that I have my path as http://.... and I'm working with file system, then my SVN path must be file://, I try a rellocate and put it as file:// and it is working well.

Axel