Chris
Chris

Reputation: 2747

Subversion has stopped working with snow leopard install

With the install of snow leopard access to subversion has stopped working, any one know how I can fix it?

When I click on my repository I get

list svn+ssh//[email protected]/library/subversion/respository/apps Error 210002 (Network connection closed unexpectedly Description: (null)

Any help would be very gratefully received.

Upvotes: 1

Views: 4887

Answers (1)

LiraNuna
LiraNuna

Reputation: 67232

You seem to be connecting through SSH. First try to manually ssh into the remote server.

ssh -vvv [email protected] 

Since it's a local address, I assume it's another mac computer and had been upgraded to snow leopard as well, changing the machine fingerprint for SSH, and it's closing the link for your safety (man in the middle attack).

Try to remove ~/.ssh/known_hosts and see if it solves the issue.

Upvotes: 3

Related Questions