0

I tried using this image, https://app.vagrantup.com/alpine/boxes/alpine64

But, not connecting at the end, VM is showing as running in the virtualbox, but vagrant ssh command is not connecting.

I observer, username vagrant and without password it is connecting in the virtualbox.

My vagranfile:

Vagrant.configure("2") do |config|
    # For a complete reference, please see the online documentation at
    # https://docs.vagrantup.com.
  
    # This refers to a local `.box` file which should have been generated by running sets in README.md
    # https://app.vagrantup.com/alpine/boxes/alpine64
    config.vm.box = "alpine/alpine64"
    config.vm.network "private_network", ip: "192.168.34.1"
  
    # Vagrant has a default synced folder which you might choose to disable
    config.vm.synced_folder ".", "/vagrant"
  
    # This custom built box is not setup to support updates anyway, hence they are been disabled
    config.vm.box_check_update = false
  
  end

0 Answers0