vagrant
vagrant copied to clipboard
Vagrant share stop when creating session
Debug output
https://gist.github.com/MrDuRadis/754f8a526148cbb539e04ef97c72fc2e
Expected behavior
The vagrant share should provide an url to access the VM
Actual behavior
The command never ending and stay with this message until I cancel it.
ex8-serveur1: Creating Vagrant Share session...
Reproduction information
Vagrant version
Vagrant 2.3.0
Host operating system
Linux Hermes 5.15.65-1-MANJARO
Guest operating system
debian/buster64 but same issue with other os.
Steps to reproduce
- vagrant up
- vagrant share
I have a ngrok accound configure and when I do ngrok http 8080
after vagrant up
everything working.
Vagrantfile
Vagrant.configure(2) do |config|
config.vm.define ex8-serveur1 do |node|
node.vm.box = "debian/buster64"
node.vm.hostname = "ex8-serveur1"
node.vm.network "forwarded_port", guest: 80, host: 8080
node.vm.provider "virtualbox" do |v|
v.name = "ex8-serveur1"
end
end
end