How do you stop the installment plan from showing the password on the screen when using capistrano?

I have a question regarding capistano and bundler.

When I deploy my application through a copy of ssh, bundler asks me for the password for my root. This is normal because I install my gems in a separate directory in the system. However, when I type in my password, it appears on the screen when entering text. How can I stop this?

I use the current stable versions of Rails, Bundler, Capistano. The system runs FreeBSD 9.0, Apache and Phusion Passenger.

Thank.

+3
source share
1 answer

, , - forforward, capistrano ssh- .

ssh_options[:username] = 'USERNAME'
ssh_options[:forward_agent] = true

, . ~/.ssh/authorized_keys . Googling , Ubuntu, ubuntu ssh -

0

All Articles