I have to check some code and run it. I have the URL:

svn+ssh://myuser@www.myclient.com/home/svn/project/trunk

I have a file with their private key. What do I do to get this code?

link|improve this question

What operating system are you on? – Neall Oct 10 '08 at 16:28
Mac OS X Leopard locally, but this is really supposed to go on a RH ES4 box. – Sam McAfee Oct 10 '08 at 17:16
I am also getting "-bash: svn+ssh://... blah blah No such file or directory", though I have svn and ssh installed and use them all the time. Can I do this from Eclipse with Subclipse plugin (which I also use alot)? – Sam McAfee Oct 10 '08 at 17:18
feedback

5 Answers

up vote 2 down vote accepted

The private key goes on the client machine, often named as ~/.ssh/id_rsa, ~/.ssh/id_dsa, or ~/.ssh/identity depending on the SSH version and the type of key. However, you can just use ssh -i path/to/private.key.

This is presuming that the corresponding public key exists on the server in ~/.ssh/authorized_keys, and that your local machine is running the OpenSSH client. If you are using PuTTY on Windows, simply open up the Pageant program, and import the key via the GUI.

link|improve this answer
feedback

If you need to use a custom key just for svn, the following will work:

SVN_SSH="ssh -i path/to/key_name"

export SVN_SSH

svn commands

http://labs.kortina.net/2010/01/30/svn-checkout-with-private-key-over-ssh/

link|improve this answer
feedback

Add this entry to your ~/.ssh/config file

Host YOUR_SERVER
IdentityFile YOUR_PRIVATE_KEY_PATH (ex: ~/.ssh/rsa)
User User_NAME

for more option see the ssh_config man page

link|improve this answer
feedback

Add the private key to your ~/.ssh/authorized_keys and then run ssh-agent $SHELL; ssh-add;, and then the svn co of that URL should work.

link|improve this answer
Your private keys do not go in ~/.ssh/config. – ephemient Oct 10 '08 at 20:12
Oops, you're totally right, that should have been authorized_keys. – Swaroop C H Oct 11 '08 at 0:27
feedback

Here are the steps that I used to connect from the Mac OS X command line to my server via svn+ssh:

On server:

ssh-keygen -b 1024 -t dsa -f mykey   (creates mykey and mkey.pub files)

Copy contents of mykey.pub to ~/.ssh/authorized_keys (create authorized_keys file if it doesn't exist)

Download mkey to your local machine and run:

chmod 600 mkey  (the next step won't run otherwise)
svn-add mkey  (enter your passphrase)

checkout from your svn server with ssh:

svn co svn+ssh://user@server.com/repos/path

Delete mkey and mkey.pub from your server

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.