[Capistrano] Re: Net::SSH::AuthenticationFailed with capistrano 2.3

2008-06-08 Thread Anthony Ettinger
Had this same problem, change your :db variable to www.yoursite.com, instead of db.yoursite.com. The variable actually refers to where migrations for the db are run from, not where the db actually lives (ie: database.yml). With a shared host -- typically its all the same server. On Sun, Jun 8

[Capistrano] Re: Net::SSH::AuthenticationFailed with capistrano 2.3

2008-06-08 Thread Jamis Buck
Do you have ssh access to mysql.domain.be? If not, be sure to remove that machine from your deploy.rb and set one of your other servers to be in the :db role. - Jamis Tarscher wrote: > Hi all, > > I try to deploy to a dreamhost account but get a > Net::SSH::AuthenticationFailed > > When I use

[Capistrano] Net::SSH::AuthenticationFailed with capistrano 2.3

2008-06-08 Thread Tarscher
Hi all, I try to deploy to a dreamhost account but get a Net::SSH::AuthenticationFailed When I use cap deploy:cold I get a Net::SSH::AuthenticationFailed). I have set the username and password in my deploy.rb set :user, 'xxx' set :password, 'xxx' Someone knows what goes wrong? Thanks Stijn