Hi,
I'm brand new to Vagrant and attempting to get a CentOS/7 box running within a VirtualBox on Windows 10 Pro (Build 1709, Fall Creators Update).
I am using Vagrant 2.0.2 and VirtualBox 5.2.8 and the box is the standard centos/7 box. I'm also using the vagrant-vbguest plugin.
I can't get it to run at all on one development box (it times out on the SSH authentication - the VirtualBox is created and running but 'vagrant up' hangs at the SSH auth method line and times out).
On my other box, it will perform the entire
vagrant up process successfully, but returns the following when I attempt to do a
vagrant ssh:
vag...@127.0.0.1: Permission denied (publickey,gssapi-keyex,gssapi-with-mic).
Results of
vagrant ssh-config:
Host default
HostName 127.0.0.1
User vagrant
Port 2222
UserKnownHostsFile /dev/null
StrictHostKeyChecking no
PasswordAuthentication no
IdentityFile E:/vagrant-boxes/.vagrant/machines/default/virtualbox/private_key
IdentitiesOnly yes
LogLevel FATAL
Contents of Vagrantfile
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "centos/7"
config.vm.synced_folder ".", "/vagrant", type: "virtualbox"
end
Any ideas?