18

I get this errormessage:

An error occurred in the underlying SSH library that Vagrant uses. The error message is shown below. In many cases, errors from this library are caused by ssh-agent issues. Try disabling your SSH agent or removing some keys and try again.

It is my first time with vagrant.

I took a tour through this tutorial.

https://wpbeaches.com/setting-up-a-wordpress-vvv-vagrant-workflow/

I've windows 10, vagrant 1.8.5, Oracle VM newest version.

I read a lot about this issue but nothing helps me.

Maybe somebody knows a solution.

cgee
  • 1,910
  • 2
  • 22
  • 38
  • have u tried as error message suggested. Kill the running ssh-agent process. – Rohan Khude Aug 08 '16 at 08:53
  • I don't have this process in my taskmanager. For info: vagrant ssh-config -> The port is 2200.. is that correct? I read the port should be 2222 – cgee Aug 08 '16 at 08:59
  • 2222 is default one. please check http://stackoverflow.com/questions/10864372/how-to-ssh-to-vagrant-without-actually-running-vagrant-ssh – Rohan Khude Aug 08 '16 at 10:14
  • Maybe these answers help: http://stackoverflow.com/questions/22575261/vagrant-stuck-connection-timeout-retrying – Andreas Apr 06 '17 at 13:00

2 Answers2

14

Please try this command vagrant halt from inside your homestead directory I had the same issue and this resolved my issue

Mohammad Anas
  • 320
  • 3
  • 6
  • 2
    This happened to me after the Win10 update came on 14/09/2018 for me, this answer solved the problem. – pszaba Sep 14 '18 at 07:43
1

This worked for me:

1. vagrant halt

2. vagrant up --provision

faiz habib
  • 11
  • 2