hashicorp / vagrant

Vagrant is a tool for building and distributing development environments.
https://www.vagrantup.com
Other
26.02k stars 4.42k forks source link

VM does not boot with Alma 8 #13341

Closed JacobJanzen closed 4 months ago

JacobJanzen commented 5 months ago

Debug output

https://gist.github.com/JacobJanzen/93f8235b1b50386a6c39355954f85b92

Expected behavior

The machine should boot after running vagrant up.

Actual behavior

The build hangs after installing Virtualbox Guest Additions with ==> default: Waiting for machine to boot. This may take a few minutes.... This eventually times out with the message

Timed out while waiting for the machine to boot. This means that
Vagrant was unable to communicate with the guest machine within
the configured ("config.vm.boot_timeout" value) time period.

If you look above, you should be able to see the error(s) that
Vagrant had when attempting to connect to the machine. These errors
are usually good hints as to what may be wrong.

If you're using a custom box, make sure that networking is properly
working and you're able to connect to the machine. It is a common
problem that networking isn't setup properly in these boxes.
Verify that authentication configurations are also setup properly,
as well.

If the box appears to be booting properly, you may want to increase
the timeout ("config.vm.boot_timeout") value.

Reproduction information

Vagrant version

Vagrant 2.4.0

Host operating system

Ubuntu 22.04.3 LTS

Guest operating system

Alma 8

Steps to reproduce

  1. Run vagrant up

Vagrantfile

Vagrant.configure("2") do |config|
  config.vm.box = "generic/alma8"
end
JacobJanzen commented 4 months ago

It seems like Alma 8 is working again. I don't know what's changed, but this seems to no longer be an issue.