Reputation: 1336
When I try the vagrant halt
command in my command prompt, it tells me how the 'ssh' executable is not found. So, I followed these steps to download putty and generate a key to enter ssh mode. However, when I try the halt command in my putty ssh mode, it says the program 'vagrant' is currently not installed. To run 'vagrant' please ask your administrator to install the package 'vagrant'.
I got the vagrant up
working just fine, but I want to properly halt it before I shut my computer off.
Upvotes: 0
Views: 659
Reputation: 1336
This issue was solved by using git bash in administrator mode (right click the program, select run as administrator) to halt the vagrant, since it has ssh built in. I had to navigate to the vagrant-local folder inside git bash and execute the vagrant halt
command.
Upvotes: 1