Skip to content

vagrant reload returns timing-out error messages #12130

@rrosenb12

Description

@rrosenb12

Vagrant version: 2.2.14
Host operating system: macOS Big Sur, Version 11.1
Guest operating system: VirtualBox 6.1

# -*- mode: ruby -*-
# vi: set ft=ruby :

Vagrant.configure("2") do |config|
  config.vm.box = "ubuntu/trusty64"
  config.vm.network "private_network", ip: "192.168.33.10"
  config.vm.synced_folder ".", "/var/www/html", :nfs => {:mount_options => ["dmode=777", "fmode=666"]}
  config.vm.provision "shell", inline: <<-SHELL
    apt-get update
    apt-get install -y apache2
  SHELL
end

Basically, what's happening is that if I run vagrant reload, it runs continues in this looping

default: Warning: Remote connection disconnect. Retrying...
default: Warning: Connection reset. Retrying...

message. The only way I've been able to remedy this is to completely destroy the box and run vagrant up again. This will do, but is obviously not ideal.

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions