I’m having trouble getting Capistrano to work on Dreamhost. I seem to be
having problems logging in, but I can ssh fine to my dreamhost server
from this machine. This doesn’t seem like a dreamhost specific thing to
me, but I’m kind of stuck.
Here’s the exception I get from “cap setup”:
/opt/local/lib/ruby/gems/1.8/gems/net-ssh-1.0.9/lib/net/ssh/session.rb:129:in
`initialize’: jschementi (Net::SSH::AuthenticationFailed)
And Here’s the meat of my config/deploy.rb file:
set :application, “starline”
set :repository, “http://www.schementec.com/starline/Starline”
role :web, “starline.schementec.com”
role :app, “starline.schementec”
role :db, “mysql.schementec.com”, :primary => true
set :user, “jschementi”
set :deploy_to, “/home/#{user}/starline.schementec.com”
set :use_sudo, false
set :checkout, “export”
Let me know if anyone has any insite. Thanks.
~Jimmy