My first machine is set up correctly, its public key is in the authorized_keys file and i can successfully deploy my applications with cap deploy without having to enter passwords.
Now i'm trying to get the same thing going for my second machine.
I'm following Marks suggestion for adding a workaround to add extra keys to the authorized keys file (in the absense of the ssh-add-id command which i don't seem to have either)
http://www.hostingrails.com/forums/wiki_thread/27
user@homebox ~ $ scp .ssh/id_dsa.pub user@servername:homebox_dsa.pub
user@homebox ~ $ ssh user@servername
user@servername ~ $ cat homebox_dsa.pub >> .ssh/authorized_keys
user@servername ~ $ rm homebox_dsa.pub
Following this guide i can successfully add the public key from my second computer to the servers authorized_keys file too. But when running cap deploy from my laptop, it exits with an error complaining the 'fingerprint [long hex number] does not match for 999xxx.edwards.hostingrails.com' (server name changed)It occurred to me that on both computers i'm trying to add public keys for, i have the same username. could this be complicating things?
Does anyone have any other ideas about what might be causing the complication?
thanks a lot!