-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Closed
Description
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
endBasically, 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.
Reactions are currently unavailable