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* : *[email protected]: 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? -- This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may result in your removal from this mailing list. GitHub Issues: https://github.com/mitchellh/vagrant/issues IRC: #vagrant on Freenode --- You received this message because you are subscribed to the Google Groups "Vagrant" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/6a11e13f-7320-45e9-bf75-826a0a89cf3c%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
