OKMantis
OKMantis

Reputation: 105

SSHKit::Runner::ExecuteError: Exception while executing as [email protected]: No digester supplied

I've set up capistrano this way: https://gorails.com/deploy/ubuntu/16.04 Using the latest versions of every gem.

What I get when I want to do " cap production deploy" is the following:

"(Backtrace restricted to imported tasks)
cap aborted!
SSHKit::Runner::ExecuteError: Exception while executing as [email protected]: No digester supplied

Caused by:
No digester supplied

Tasks: TOP => rbenv:validate
(See full trace by running task with --trace)"

So I'm quite new in coding and I still need to learn things. Can someone tell me what's going with this message. I couldn't find anything through Google. It's mysterious. If you need more details please let me know.

Upvotes: 2

Views: 2575

Answers (2)

Rodrigo Ibarra
Rodrigo Ibarra

Reputation: 325

using ssh-add will fix the problem as well.

Upvotes: 0

harsha-sagar
harsha-sagar

Reputation: 111

Refresh ssh-agent info:

eval ssh-agent
ssh-add ~/.ssh/id_rsa

& then try again

Upvotes: 6

Related Questions