I’m running Rails + Passenger under an Ubuntu AWS’s instance. Now I’m trying to deploy with Capistrano, I already did my git repository (and upload it to the server) and my deploy.rb file (with capify .). I already runned cap deploy:setup and cap deploy:check with success. But now when I try to run cap deploy it fail and I get this error http://pastebin.com/uzkerA9F
I’m running Rails + Passenger under an Ubuntu AWS’s instance. Now I’m trying to
Share
Well, I found the problem and solution here
Capistrano asks for password when deploying, despite SSH keys
So > I add
set :ssh_options, {:forward_agent => true}to my deploy.rb file