We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi guys,
I am on Mac OS X El Capitan and my gulp-sftp fails with the following message:
[16:35:58] Error in plugin 'gulp-sftp' Message: All configured authentication methods failed Details: level: client-authentication
I dug a bit and this might be the cause of the error: mscdex/ssh2#238
The text was updated successfully, but these errors were encountered:
Here is a fix. This should go to line 192 instead of just c.connect(connection_options);
connection_options.tryKeyboard = true; c.on('keyboard-interactive', function(name, instructions, instructionsLang, prompts, finish) { // Pass answers to `prompts` to `finish()`. Typically `prompts.length === 1` // with `prompts[0] === "Password: "` finish([connection_options.password]); }).connect(connection_options);
Sorry, something went wrong.
Can confirm that this fix worked for me, also on El Capitan.
It works. But I had yet to update openssl v0.9.8zh -> v1.1.0-pre1. http://mac-dev-env.patrickbougie.com/openssl
Successfully merging a pull request may close this issue.
Hi guys,
I am on Mac OS X El Capitan and my gulp-sftp fails with the following message:
[16:35:58] Error in plugin 'gulp-sftp'
Message:
All configured authentication methods failed
Details:
level: client-authentication
I dug a bit and this might be the cause of the error:
mscdex/ssh2#238
The text was updated successfully, but these errors were encountered: