vagrant icon indicating copy to clipboard operation
vagrant copied to clipboard

Vagrant share stop when creating session

Open MrDuRadis opened this issue 2 years ago • 0 comments

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

  1. vagrant up
  2. 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

MrDuRadis avatar Oct 10 '22 19:10 MrDuRadis