MrAutoIt
MrAutoIt

Reputation: 795

'vagrant ssh' not working with the vagrant-multi-putty plugin

I am trying to run VirtualBox with Vagrant and the plugin vagrant-multi-putty. I am running Windows 10 and am following this guide. All the plugins and steps seem to work fine until I get to the “vagrant ssh” step. I get this error:

enter image description here

I did some googling and the recommended solution is usually to set the path correctly to putty.exe. You can do that like so:

set PATH=%PATH%;C:\Program Files (x86)\PuTTY

Even though the plugin seems to be installing right I can’t find the putty.exe file anywhere on my system. I tried downloading the binaries from here and manually adding them to C:\Program Files (x86)\PuTTY. Then I set the path like the example above. However, I am still getting the same error when I run "vagrant ssh".

Upvotes: 0

Views: 210

Answers (1)

kmpm
kmpm

Reputation: 495

Made the same misstake myself at first.

According to the installation instructions for https://github.com/nickryand/vagrant-multi-putty you are supposed to use:

vagrant putty

instead of "vagrant ssh"

Upvotes: 1

Related Questions