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

Re: Temporary failure in name resolution

From: Ryan Schmidt <subversion-2006c_at_ryandesign.com>
Date: 2006-08-08 13:41:58 CEST

On Aug 8, 2006, at 07:36, Indraveni wrote:

> I am accessing subversion using svn+ssh server. It was working
> fine. But suddenly once it started displaying an error message
> saying Temporary failure of name resolution as follows. Can any one
> please tell me what is the may be the problem..
>
> root_at_localhost[root]#svn co svn+ssh://indraveni@192.168.31.65:8081/
> subversion/BOSS/Documents/
> ssh: 192.168.31.8081: Temporary failure in name resolution
> svn: Connection closed unexpectedly

Curious: you typed "192.168.31.65:8081" and it tried to access
"192.168.31.8081"? What version of Subversion and what OS is the
client running on?

You really have an SSH server running on port 8081? That sounds like
a port you'd be more likely to use for an HTTP server. If you're
serving by HTTP, you need to use that protocol:

svn co http://indraveni@192.168.31.65:8081/subversion/BOSS/Documents/

Or try rather specifying the username with the --username switch, not
in the URL:

svn co --username indraveni svn+ssh://192.168.31.65:8081/subversion/
BOSS/Documents/
svn co --username indraveni http://192.168.31.65:8081/subversion/BOSS/
Documents/

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Tue Aug 8 13:43:01 2006

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

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