Guest-specific operations were attempted on a machine

Hello,

When doing vagrant up I get these errors:

D:\Mysql-admin\mysql8_administration_labs\lab2d>vagrant up
Bringing machine ‘lab2d’ up with ‘virtualbox’ provider…
==> lab2d: Importing base box ‘pboros/mysql8_admin_80’…
==> lab2d: Matching MAC address for NAT networking…
==> lab2d: Checking if box ‘pboros/mysql8_admin_80’ version ‘1.0’ is up to date…
==> lab2d: Setting the name of the VM: lab2d_lab2d_1629097080961_82306
==> lab2d: Clearing any previously set network interfaces…
==> lab2d: Preparing network interfaces based on configuration…
lab2d: Adapter 1: nat
lab2d: Adapter 2: hostonly
==> lab2d: Forwarding ports…
lab2d: 22 (guest) => 2222 (host) (adapter 1)
==> lab2d: Running ‘pre-boot’ VM customizations…
==> lab2d: Booting VM…
==> lab2d: Waiting for machine to boot. This may take a few minutes…
lab2d: SSH address: 127.0.0.1:2222
lab2d: SSH username: vagrant
lab2d: SSH auth method: private key
lab2d: Warning: Connection aborted. Retrying…
lab2d: Warning: Connection reset. Retrying…
lab2d: Warning: Remote connection disconnect. Retrying…
lab2d: Warning: Connection aborted. Retrying…
lab2d: Warning: Connection reset. Retrying…
lab2d: Warning: Remote connection disconnect. Retrying…
lab2d: Warning: Connection aborted. Retrying…
lab2d: Warning: Connection reset. Retrying…
==> lab2d: Machine booted and ready!
==> lab2d: Configuring proxy environment variables…
Guest-specific operations were attempted on a machine that is not
ready for guest communication. This should not happen and a bug
should be reported.

D:\Mysql-admin\mysql8_administration_labs\lab2d>

Any way to fix this?

I also noticed this

D:\Mysql-admin\mysql8_administration_labs\lab2d>vagrant vbguest --status
[lab2d] GuestAdditions versions on your host (6.1.26) and guest (5.2.26) do not match.

D:\Mysql-admin\mysql8_administration_labs\lab2d>

Bringing the guest up without attempting to update guest additions works as expected. Perhaps try removing the vagrant-vbguest plugin and see it works as expected.

1 Like

Thanks, it seems to work now after doing this

vagrant plugin uninstall vagrant-vbguest

Why was that the problem?