Now I got a new update for Windows called 2004. After this update my virtual machines can not start again.
I found a problem, that: If a virtual machine has a Host-OnlyAdapter it can not start.
Code: Select all
Failed to open/create the internal network 'HostInterfaceNetworking-VirtualBox Host-Only Ethernet Adapter #2' (VERR_INTNET_FLT_IF_NOT_FOUND).
Failed to attach the network LUN (VERR_INTNET_FLT_IF_NOT_FOUND).
Result code: E_FAIL (0x80004005)
Komponens: ConsoleWrap
Interface: IConsole {872da645-4a9b-1727-bee2-5585105b9eed}
Code: Select all
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "bento/debian-9"
config.vm.provider "virtualbox" do |v|
v.memory = 256
v.cpus = 1
end
config.vm.network "private_network", ip: "192.168.100.126", nic_type: "82545EM"
config.vm.provision "docker" do |d|
d.run "mysql", image: "mysql:8",
args: "-p 3306:3306 -e MYSQL_DATABASE=partner-service -e MYSQL_ROOT_PASSWORD=root"
end
end
Virtualbox version: 6.1.8 r137981 (Qt5.6.2)
Vagrant version: 2.2.9