Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

waiting for SSH to become available... ssh permission denied, please try again #710

Closed
francisrod01 opened this issue Dec 19, 2016 · 14 comments
Labels

Comments

@francisrod01
Copy link

francisrod01 commented Dec 19, 2016

Hi guys!

I have a problem with ssh connection from vagrant reload.
My OS is: Debian 8 Jessie amd64 httpredir repositories

The vagrant plugin list is below:

$ vagrant plugin list
vagrant-libvirt (0.0.36)
vagrant-mutate (1.2.0)
  - Version Constraint: > 0
vagrant-share (1.1.6)
  - Version Constraint: > 0

Qemu version is:

$ qemu-x86_64 -version
qemu-x86_64 version 2.1.2 (Debian 1:2.1+dfsg-12+deb8u6), Copyright (c) 2003-2008 Fabrice Bellard

My Vagrantfile is below:

tosystems@debian:~$ cat Vagrantfile 
#!/bin/bash
# -*- mode: ruby -*-
# vi: set ft=ruby :

# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure("2") do |config|
  # The most common configuration options are documented and commented below.
  # For a complete reference, please see the online documentation at
  # https://docs.vagrantup.com.

  # Every Vagrant development environment requires a box. You can search for
  # boxes at https://atlas.hashicorp.com/search.
  config.vm.box = "ubuntu-amd64"

  # Disable automatic box update checking. If you disable this, then
  # boxes will only be checked for updates when the user runs
  # `vagrant box outdated`. This is not recommended.
  # config.vm.box_check_update = false

  # Create a forwarded port mapping which allows access to a specific port
  # within the machine from a port on the host machine. In the example below,
  # accessing "localhost:8080" will access port 80 on the guest machine.
  # config.vm.network "forwarded_port", guest: 80, host: 8080

  # Create a private network, which allows host-only access to the machine
  # using a specific IP.
  config.vm.network "private_network", ip: "192.168.33.10"

  # Create a public network, which generally matched to bridged network.
  # Bridged networks make the machine appear as another physical device on
  # your network.
  # config.vm.network "public_network"

  # Share an additional folder to the guest VM. The first argument is
  # the path on the host to the actual folder. The second argument is
  # the path on the guest to mount the folder. And the optional third
  # argument is a set of non-required options.
  config.vm.synced_folder "~/Documents/projects", "/home/vagrant/vagrant_projects", type: "rsync"

  # Provider-specific configuration so you can fine-tune various
  # backing providers for Vagrant. These expose provider-specific options.
  # Example for VirtualBox:
  #
  # config.vm.provider "virtualbox" do |vb|
  #   # Display the VirtualBox GUI when booting the machine
  #   vb.gui = true
  #
  #   # Customize the amount of memory on the VM:
  #   vb.memory = "1024"
  # end
  
  ##config.ssh.private_key_path = "~/.ssh/id_rsa"

  config.vm.provider "libvirt" do |lv|
    lv.driver = "qemu"
    lv.host = "localhost"
    lv.connect_via_ssh = true
    lv.uri = "qemu:///system"
    lv.memory = 2048
    lv.cpus = 2
    lv.id_ssh_key_file = "/home/tosystems/.ssh/id_rsa"
  end

  # View the documentation for the provider you are using for more
  # information on available options.

  # Define a Vagrant Push strategy for pushing to Atlas. Other push strategies
  # such as FTP and Heroku are also available. See the documentation at
  # https://docs.vagrantup.com/v2/push/atlas.html for more information.
  # config.push.define "atlas" do |push|
  #   push.app = "YOUR_ATLAS_USERNAME/YOUR_APPLICATION_NAME"
  # end

  # Enable provisioning with a shell script. Additional provisioners such as
  # Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the
  # documentation for more information about their specific syntax and use.
  # config.vm.provision "shell", inline: <<-SHELL
  #   apt-get update
  #   apt-get install -y apache2
  # SHELL
end

output:

$ vagrant reload
Ignoring ruby-libvirt-0.7.0 because its extensions are not built.  Try: gem pristine ruby-libvirt --version 0.7.0
==> default: Halting domain...
==> default: Starting domain.
==> default: Waiting for domain to get an IP address...
==> default: Waiting for SSH to become available...
@localhost's password: 
Permission denied, please try again.
@localhost's password: 
Permission denied, please try again.
@localhost's password: 
Permission denied (publickey,password).
@localhost's password: 
Permission denied, please try again.
@localhost's password: 
Permission denied, please try again.
@localhost's password: 
Permission denied (publickey,password).
@localhost's password: 
Permission denied, please try again.
@infernix
Copy link
Member

infernix commented Dec 19, 2016

You are using:

config.vm.box = "ubuntu-amd64"

Please retry with this box:

config.vm.box = "debian/jessie64"

Additionally, please remove the following statements:

lv.host = "localhost"
lv.connect_via_ssh = true
lv.uri = "qemu:///system"
lv.id_ssh_key_file = "/home/tosystems/.ssh/id_rsa"

@francisrod01
Copy link
Author

@infernix the box ubuntu-amd64 is my personal box with ubuntu amd64bits installed.

@infernix
Copy link
Member

Which is why i am asking you to retry with a known good box; please let me know your results with the changes I mentioned.

@francisrod01
Copy link
Author

francisrod01 commented Dec 19, 2016

I'm try now...
I created a clean Vagrantfile now.

Status: Attempting to find and install...

@infernix
Copy link
Member

Post the output of VAGRANT_LOG=debug vagrant up --provider=libvirt

@francisrod01
Copy link
Author

The big output is:

$ VAGRANT_LOG=debug vagrant up --provider=libvirt
 INFO global: Vagrant version: 1.9.1
 INFO global: Ruby version: 2.2.5
 INFO global: RubyGems version: 2.4.5.1
 INFO global: VAGRANT_LOG="debug"
 INFO global: VAGRANT_INSTALLER_VERSION="2"
 INFO global: VAGRANT_OLD_ENV_PWD="/home/tosystems"
 INFO global: VAGRANT_OLD_ENV_GNOME_DESKTOP_SESSION_ID="this-is-deprecated"
 INFO global: VAGRANT_OLD_ENV_GJS_DEBUG_TOPICS="JS ERROR;JS LOG"
 INFO global: VAGRANT_OLD_ENV_LANG="en_US.UTF-8"
 INFO global: VAGRANT_OLD_ENV_XDG_SEAT="seat0"
 INFO global: VAGRANT_OLD_ENV_XDG_SESSION_DESKTOP="default"
 INFO global: VAGRANT_OLD_ENV_XDG_SESSION_ID="1"
 INFO global: VAGRANT_OLD_ENV_GPG_AGENT_INFO="/run/user/1000/keyring/gpg:0:1"
 INFO global: VAGRANT_OLD_ENV_XDG_MENU_PREFIX="gnome-"
 INFO global: VAGRANT_OLD_ENV_SHELL="/bin/bash"
 INFO global: VAGRANT_OLD_ENV_COLORTERM="mate-terminal"
 INFO global: VAGRANT_OLD_ENV_USERNAME="tosystems"
 INFO global: VAGRANT_OLD_ENV_DESKTOP_SESSION="default"
 INFO global: VAGRANT_OLD_ENV_HOME="/home/tosystems"
 INFO global: VAGRANT_OLD_ENV_XAUTHORITY="/var/run/gdm3/auth-for-tosystems-ZcAWQU/database"
 INFO global: VAGRANT_INSTALLER_ENV="1"
 INFO global: VAGRANT_OLD_ENV_WINDOWID="54525982"
 INFO global: VAGRANT_OLD_ENV_XDG_RUNTIME_DIR="/run/user/1000"
 INFO global: VAGRANT_OLD_ENV_GJS_DEBUG_OUTPUT="stderr"
 INFO global: VAGRANT_OLD_ENV_USER="tosystems"
 INFO global: VAGRANT_OLD_ENV_LS_COLORS="rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.axv=01;35:*.anx=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.axa=00;36:*.oga=00;36:*.spx=00;36:*.xspf=00;36:"
 INFO global: VAGRANT_OLD_ENV__="/opt/vagrant/bin/vagrant"
 INFO global: VAGRANT_EXECUTABLE="/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/bin/vagrant"
 INFO global: VAGRANT_OLD_ENV_TERM="xterm"
 INFO global: VAGRANT_OLD_ENV_GDM_LANG="en_US.UTF-8"
 INFO global: VAGRANT_OLD_ENV_WINDOWPATH="7"
 INFO global: VAGRANT_OLD_ENV_DISPLAY=":0"
 INFO global: VAGRANT_OLD_ENV_SESSION_MANAGER="local/debian:@/tmp/.ICE-unix/1392,unix/debian:/tmp/.ICE-unix/1392"
 INFO global: VAGRANT_OLD_ENV_PATH="/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games"
 INFO global: VAGRANT_OLD_ENV_LOGNAME="tosystems"
 INFO global: VAGRANT_OLD_ENV_DBUS_SESSION_BUS_ADDRESS="unix:abstract=/tmp/dbus-ASBWRVbqL1,guid=854658d356aee3920c84d6dc5856896a"
 INFO global: VAGRANT_OLD_ENV_SSH_AUTH_SOCK="/run/user/1000/keyring/ssh"
 INFO global: VAGRANT_OLD_ENV_SHLVL="2"
 INFO global: VAGRANT_OLD_ENV_XDG_DATA_DIRS="/usr/share/gnome:/usr/local/share/:/usr/share/"
 INFO global: VAGRANT_OLD_ENV_SSH_AGENT_PID="1429"
 INFO global: VAGRANT_OLD_ENV_VAGRANT_LOG="debug"
 INFO global: VAGRANT_OLD_ENV_GDMSESSION="default"
 INFO global: VAGRANT_OLD_ENV_XDG_CURRENT_DESKTOP="GNOME"
 INFO global: VAGRANT_INSTALLER_EMBEDDED_DIR="/opt/vagrant/embedded"
 INFO global: VAGRANT_OLD_ENV_XDG_VTNR="7"
 INFO global: Plugins:
 INFO global:   - vagrant-libvirt = [installed: 0.0.36 constraint: > 0]
 INFO global:   - vagrant-mutate = [installed: 1.2.0 constraint: > 0]
 INFO global:   - vagrant-share = [installed: 1.1.6 constraint: > 0]
DEBUG bundler: Current generated plugin dependency list: [<Gem::Dependency type=:runtime name="vagrant-libvirt" requirements="> 0">, <Gem::Dependency type=:runtime name="vagrant-mutate" requirements="> 0">, <Gem::Dependency type=:runtime name="vagrant-share" requirements="> 0">]
DEBUG bundler: Generating new builtin set instance.
DEBUG bundler: Generating new plugin set instance. Skip gems - []
DEBUG bundler: Activating solution set: ["vagrant-share-1.1.6", "vagrant-mutate-1.2.0", "vagrant-libvirt-0.0.36", "rest-client-2.0.0", "nokogiri-1.6.7.1", "fog-libvirt-0.3.0", "netrc-0.11.0", "mime-types-3.1", "http-cookie-1.0.3", "mini_portile2-2.0.0", "json-1.8.1", "ruby-libvirt-0.7.0", "fog-xml-0.1.2", "fog-json-1.0.2", "fog-core-1.43.0", "mime-types-data-3.2016.0521", "domain_name-0.5.20161129", "multi_json-1.12.1", "formatador-0.2.5", "excon-0.54.0", "builder-3.2.2", "unf-0.1.4", "unf_ext-0.0.7.2"]
DEBUG bundler: Activating gem vagrant-share-1.1.6
DEBUG bundler: Activating gem vagrant-mutate-1.2.0
DEBUG bundler: Activating gem vagrant-libvirt-0.0.36
DEBUG bundler: Failed to load solution set. Retrying with reverse order.
DEBUG bundler: Activating solution set: ["unf_ext-0.0.7.2", "unf-0.1.4", "builder-3.2.2", "excon-0.54.0", "formatador-0.2.5", "multi_json-1.12.1", "domain_name-0.5.20161129", "mime-types-data-3.2016.0521", "fog-core-1.43.0", "fog-json-1.0.2", "fog-xml-0.1.2", "ruby-libvirt-0.7.0", "json-1.8.1", "mini_portile2-2.0.0", "http-cookie-1.0.3", "mime-types-3.1", "netrc-0.11.0", "fog-libvirt-0.3.0", "nokogiri-1.6.7.1", "rest-client-2.0.0", "vagrant-libvirt-0.0.36", "vagrant-mutate-1.2.0", "vagrant-share-1.1.6"]
DEBUG bundler: Activating gem excon-0.54.0
DEBUG bundler: Activating gem formatador-0.2.5
DEBUG bundler: Activating gem fog-core-1.43.0
DEBUG bundler: Activating gem fog-json-1.0.2
DEBUG bundler: Activating gem fog-xml-0.1.2
DEBUG bundler: Activating gem ruby-libvirt-0.7.0
DEBUG bundler: Activating gem fog-libvirt-0.3.0
DEBUG bundler: Activating gem vagrant-libvirt-0.0.36
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/kernel_v1/plugin.rb
 INFO manager: Registered plugin: kernel
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/pushes/noop/plugin.rb
 INFO manager: Registered plugin: noop
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/pushes/heroku/plugin.rb
 INFO manager: Registered plugin: heroku
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/pushes/atlas/plugin.rb
 INFO manager: Registered plugin: atlas
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/pushes/local-exec/plugin.rb
 INFO manager: Registered plugin: local-exec
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/pushes/ftp/plugin.rb
 INFO manager: Registered plugin: ftp
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/provisioners/docker/plugin.rb
 INFO manager: Registered plugin: docker
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/provisioners/puppet/plugin.rb
 INFO manager: Registered plugin: puppet
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/provisioners/ansible/plugin.rb
 INFO manager: Registered plugin: ansible
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/provisioners/chef/plugin.rb
 INFO manager: Registered plugin: chef
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/provisioners/cfengine/plugin.rb
 INFO manager: Registered plugin: CFEngine Provisioner
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/provisioners/salt/plugin.rb
 INFO manager: Registered plugin: salt
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/provisioners/shell/plugin.rb
 INFO manager: Registered plugin: shell
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/provisioners/file/plugin.rb
 INFO manager: Registered plugin: file
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/kernel_v2/plugin.rb
 INFO manager: Registered plugin: kernel
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/docker/plugin.rb
 INFO manager: Registered plugin: docker-provider
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/hyperv/plugin.rb
 INFO manager: Registered plugin: Hyper-V provider
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/virtualbox/plugin.rb
 INFO manager: Registered plugin: VirtualBox provider
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/communicators/winrm/plugin.rb
 INFO manager: Registered plugin: winrm communicator
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/communicators/ssh/plugin.rb
 INFO manager: Registered plugin: ssh communicator
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/hosts/bsd/plugin.rb
 INFO manager: Registered plugin: BSD host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/hosts/slackware/plugin.rb
 INFO manager: Registered plugin: Slackware host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/hosts/arch/plugin.rb
 INFO manager: Registered plugin: Arch host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/hosts/suse/plugin.rb
 INFO manager: Registered plugin: SUSE host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/hosts/freebsd/plugin.rb
 INFO manager: Registered plugin: FreeBSD host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/hosts/darwin/plugin.rb
 INFO manager: Registered plugin: Mac OS X host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/hosts/windows/plugin.rb
 INFO manager: Registered plugin: Windows host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/hosts/redhat/plugin.rb
 INFO manager: Registered plugin: Red Hat Enterprise Linux host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/hosts/gentoo/plugin.rb
 INFO manager: Registered plugin: Gentoo host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/hosts/null/plugin.rb
 INFO manager: Registered plugin: null host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/hosts/linux/plugin.rb
 INFO manager: Registered plugin: Linux host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/up/plugin.rb
 INFO manager: Registered plugin: up command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/push/plugin.rb
 INFO manager: Registered plugin: push command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/init/plugin.rb
 INFO manager: Registered plugin: init command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/package/plugin.rb
 INFO manager: Registered plugin: package command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/powershell/plugin.rb
 INFO manager: Registered plugin: powershell command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/provision/plugin.rb
 INFO manager: Registered plugin: provision command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/port/plugin.rb
 INFO manager: Registered plugin: port command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/ssh_config/plugin.rb
 INFO manager: Registered plugin: ssh-config command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/cap/plugin.rb
 INFO manager: Registered plugin: cap command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/destroy/plugin.rb
 INFO manager: Registered plugin: destroy command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/suspend/plugin.rb
 INFO manager: Registered plugin: suspend command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/provider/plugin.rb
 INFO manager: Registered plugin: provider command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/global-status/plugin.rb
 INFO manager: Registered plugin: global-status command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/plugin/plugin.rb
 INFO manager: Registered plugin: plugin command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/snapshot/plugin.rb
 INFO manager: Registered plugin: snapshot command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/list-commands/plugin.rb
 INFO manager: Registered plugin: list-commands command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/ssh/plugin.rb
 INFO manager: Registered plugin: ssh command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/version/plugin.rb
 INFO manager: Registered plugin: version command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/help/plugin.rb
 INFO manager: Registered plugin: help command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/reload/plugin.rb
 INFO manager: Registered plugin: reload command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/rdp/plugin.rb
 INFO manager: Registered plugin: rdp command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/resume/plugin.rb
 INFO manager: Registered plugin: resume command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/halt/plugin.rb
 INFO manager: Registered plugin: halt command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/status/plugin.rb
 INFO manager: Registered plugin: status command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/box/plugin.rb
 INFO manager: Registered plugin: box command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/login/plugin.rb
 INFO manager: Registered plugin: vagrant-login
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/synced_folders/smb/plugin.rb
 INFO manager: Registered plugin: SMB synced folders
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/synced_folders/rsync/plugin.rb
 INFO manager: Registered plugin: RSync synced folders
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/synced_folders/nfs/plugin.rb
 INFO manager: Registered plugin: NFS synced folders
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/bsd/plugin.rb
 INFO manager: Registered plugin: BSD-based guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/slackware/plugin.rb
 INFO manager: Registered plugin: Slackware guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/fedora/plugin.rb
 INFO manager: Registered plugin: Fedora guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/arch/plugin.rb
 INFO manager: Registered plugin: Arch guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/funtoo/plugin.rb
 INFO manager: Registered plugin: Funtoo guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/omnios/plugin.rb
 INFO manager: Registered plugin: OmniOS guest.
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/suse/plugin.rb
 INFO manager: Registered plugin: SUSE guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/tinycore/plugin.rb
 INFO manager: Registered plugin: TinyCore Linux guest.
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/pld/plugin.rb
 INFO manager: Registered plugin: PLD Linux guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/esxi/plugin.rb
 INFO manager: Registered plugin: ESXi guest.
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/ubuntu/plugin.rb
 INFO manager: Registered plugin: Ubuntu guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/freebsd/plugin.rb
 INFO manager: Registered plugin: FreeBSD guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/darwin/plugin.rb
 INFO manager: Registered plugin: Darwin guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/solaris11/plugin.rb
 INFO manager: Registered plugin: Solaris 11 guest.
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/mint/plugin.rb
 INFO manager: Registered plugin: Mint guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/photon/plugin.rb
 INFO manager: Registered plugin: VMware Photon guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/windows/plugin.rb
 INFO manager: Registered plugin: Windows guest.
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/netbsd/plugin.rb
 INFO manager: Registered plugin: NetBSD guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/trisquel/plugin.rb
 INFO manager: Registered plugin: Trisquel guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/debian/plugin.rb
 INFO manager: Registered plugin: Debian guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/redhat/plugin.rb
 INFO manager: Registered plugin: Red Hat Enterprise Linux guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/smartos/plugin.rb
 INFO manager: Registered plugin: SmartOS guest.
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/dragonflybsd/plugin.rb
 INFO manager: Registered plugin: DragonFly BSD guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/gentoo/plugin.rb
 INFO manager: Registered plugin: Gentoo guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/nixos/plugin.rb
 INFO manager: Registered plugin: NixOS guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/coreos/plugin.rb
 INFO manager: Registered plugin: CoreOS guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/solaris/plugin.rb
 INFO manager: Registered plugin: Solaris guest.
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/atomic/plugin.rb
 INFO manager: Registered plugin: Atomic Host guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/amazon/plugin.rb
 INFO manager: Registered plugin: Amazon Linux guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/openbsd/plugin.rb
 INFO manager: Registered plugin: OpenBSD guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/linux/plugin.rb
 INFO manager: Registered plugin: Linux guest.
 INFO global: Loading plugins!
DEBUG global: Loading plugin `vagrant-libvirt` with default require: `vagrant-libvirt`
 INFO manager: Registered plugin: libvirt
DEBUG global: Successfully loaded plugin `vagrant-libvirt`.
DEBUG global: Loading plugin `vagrant-mutate` with default require: `vagrant-mutate`
 INFO manager: Registered plugin: vagrant-mutate
DEBUG global: Successfully loaded plugin `vagrant-mutate`.
DEBUG global: Loading plugin `vagrant-share` with default require: `vagrant-share`
Ignoring ruby-libvirt-0.7.0 because its extensions are not built.  Try: gem pristine ruby-libvirt --version 0.7.0
 INFO manager: Registered plugin: vagrant-share
DEBUG global: Successfully loaded plugin `vagrant-share`.
 INFO vagrant: `vagrant` invoked: ["up", "--provider=libvirt"]
DEBUG vagrant: Creating Vagrant environment
 INFO environment: Environment initialized (#<Vagrant::Environment:0x0000000348a398>)
 INFO environment:   - cwd: /home/tosystems
 INFO environment: Home path: /home/tosystems/.vagrant.d
DEBUG environment: Effective local data path: /home/tosystems/.vagrant
 INFO environment: Local data path: /home/tosystems/.vagrant
DEBUG environment: Creating: /home/tosystems/.vagrant
 INFO environment: Running hook: environment_plugins_loaded
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 2 hooks defined.
 INFO runner: Running action: environment_plugins_loaded #<Vagrant::Action::Builder:0x0000000335bc88>
 INFO environment: Running hook: environment_load
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 2 hooks defined.
 INFO runner: Running action: environment_load #<Vagrant::Action::Builder:0x000000027aace0>
 INFO cli: CLI: [] "up" ["--provider=libvirt"]
DEBUG cli: Invoking command class: VagrantPlugins::CommandUp::Command ["--provider=libvirt"]
DEBUG command: 'Up' each target VM...
 INFO loader: Set :root = ["#<Pathname:/home/tosystems/Vagrantfile>"]
DEBUG loader: Populating proc cache for #<Pathname:/home/tosystems/Vagrantfile>
DEBUG loader: Load procs for pathname: /home/tosystems/Vagrantfile
 INFO loader: Loading configuration in order: [:home, :root]
DEBUG loader: Loading from: root (evaluating)
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG push: finalizing
DEBUG command: Getting target VMs for command. Arguments:
DEBUG command:  -- names: ["default"]
DEBUG command:  -- options: nil
DEBUG command: Finding machine that match name: default
 INFO loader: Set "28473040_machine_default" = []
 INFO loader: Loading configuration in order: [:home, :root, "28473040_machine_default"]
DEBUG loader: Loading from: root (cache)
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG push: finalizing
 INFO environment: Getting machine: default (libvirt)
 INFO environment: Uncached load of machine.
 INFO loader: Set "28473040_machine_default" = []
 INFO loader: Loading configuration in order: [:home, :root, "28473040_machine_default"]
DEBUG loader: Loading from: root (cache)
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG push: finalizing
 INFO box_collection: Box not found: debian/jessie64 (libvirt)
 INFO machine: Initializing machine: default
 INFO machine:   - Provider: VagrantPlugins::ProviderLibvirt::Provider
 INFO machine:   - Box: 
 INFO machine:   - Data dir: /home/tosystems/.vagrant/machines/default/libvirt
 INFO machine: New machine ID: nil
 INFO interface: Machine: metadata ["provider", :libvirt, {:target=>:default}]
 INFO command: With machine: default (#<VagrantPlugins::ProviderLibvirt::Provider:0x00000002d63c68 @machine=#<Vagrant::Machine: default (VagrantPlugins::ProviderLibvirt::Provider)>, @cap_logger=#<Log4r::Logger:0x00000002d63380 @fullname="vagrant::capability_host::vagrantplugins::providerlibvirt::provider", @outputters=[], @additive=true, @name="provider", @path="vagrant::capability_host::vagrantplugins::providerlibvirt", @parent=#<Log4r::Logger:0x0000000283f3e0 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x000000027d0328 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x000000027d0170>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x000000027bb0b8 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0000000283f250 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @cap_host_chain=[[:libvirt, #<#<Class:0x00000002d63bf0>:0x00000002cdbae8>]], @cap_args=[#<Vagrant::Machine: default (VagrantPlugins::ProviderLibvirt::Provider)>], @cap_caps={:docker=>#<Vagrant::Registry:0x00000002d63a10 @items={:public_address=>#<Proc:0x00000002e65a08@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/docker/plugin.rb:60>, :proxy_machine=>#<Proc:0x00000002e65850@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/docker/plugin.rb:65>}, @results_cache={}>, :hyperv=>#<Vagrant::Registry:0x00000002d638f8 @items={:public_address=>#<Proc:0x00000003661e28@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/hyperv/plugin.rb:25>, :snapshot_list=>#<Proc:0x00000003661db0@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/hyperv/plugin.rb:30>}, @results_cache={}>, :virtualbox=>#<Vagrant::Registry:0x00000002d63790 @items={:forwarded_ports=>#<Proc:0x00000002e0eac8@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/virtualbox/plugin.rb:27>, :nic_mac_addresses=>#<Proc:0x00000002e0e988@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/virtualbox/plugin.rb:32>, :public_address=>#<Proc:0x00000002e0e960@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/virtualbox/plugin.rb:37>, :snapshot_list=>#<Proc:0x00000002e0e8c0@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/virtualbox/plugin.rb:42>}, @results_cache={}>, :libvirt=>#<Vagrant::Registry:0x00000002d63650 @items={:nic_mac_addresses=>#<Proc:0x000000032ec400@/home/tosystems/.vagrant.d/gems/2.2.5/gems/vagrant-libvirt-0.0.36/lib/vagrant-libvirt/plugin.rb:38>}, @results_cache={}>}>)
 INFO host: Autodetecting host type for [#<Vagrant::Environment: /home/tosystems>]
DEBUG host: Trying: slackware
DEBUG host: Trying: arch
DEBUG host: Trying: suse
DEBUG host: Trying: freebsd
DEBUG host: Trying: darwin
DEBUG host: Trying: redhat
DEBUG host: Trying: gentoo
DEBUG host: Trying: bsd
DEBUG host: Trying: windows
DEBUG host: Trying: null
DEBUG host: Trying: linux
 INFO host: Detected: linux!
DEBUG host: Searching for cap: provider_install_libvirt
DEBUG host: Checking in: linux
DEBUG command: Getting target VMs for command. Arguments:
DEBUG command:  -- names: ["default"]
DEBUG command:  -- options: {:provider=>"libvirt"}
DEBUG command: Finding machine that match name: default
 INFO environment: Getting machine: default (libvirt)
 INFO environment: Returning cached machine: default (libvirt)
 INFO command: With machine: default (#<VagrantPlugins::ProviderLibvirt::Provider:0x00000002d63c68 @machine=#<Vagrant::Machine: default (VagrantPlugins::ProviderLibvirt::Provider)>, @cap_logger=#<Log4r::Logger:0x00000002d63380 @fullname="vagrant::capability_host::vagrantplugins::providerlibvirt::provider", @outputters=[], @additive=true, @name="provider", @path="vagrant::capability_host::vagrantplugins::providerlibvirt", @parent=#<Log4r::Logger:0x0000000283f3e0 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x000000027d0328 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x000000027d0170>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x000000027bb0b8 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0000000283f250 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @cap_host_chain=[[:libvirt, #<#<Class:0x00000002d63bf0>:0x00000002cdbae8>]], @cap_args=[#<Vagrant::Machine: default (VagrantPlugins::ProviderLibvirt::Provider)>], @cap_caps={:docker=>#<Vagrant::Registry:0x00000002d63a10 @items={:public_address=>#<Proc:0x00000002e65a08@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/docker/plugin.rb:60>, :proxy_machine=>#<Proc:0x00000002e65850@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/docker/plugin.rb:65>}, @results_cache={}>, :hyperv=>#<Vagrant::Registry:0x00000002d638f8 @items={:public_address=>#<Proc:0x00000003661e28@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/hyperv/plugin.rb:25>, :snapshot_list=>#<Proc:0x00000003661db0@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/hyperv/plugin.rb:30>}, @results_cache={}>, :virtualbox=>#<Vagrant::Registry:0x00000002d63790 @items={:forwarded_ports=>#<Proc:0x00000002e0eac8@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/virtualbox/plugin.rb:27>, :nic_mac_addresses=>#<Proc:0x00000002e0e988@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/virtualbox/plugin.rb:32>, :public_address=>#<Proc:0x00000002e0e960@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/virtualbox/plugin.rb:37>, :snapshot_list=>#<Proc:0x00000002e0e8c0@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/virtualbox/plugin.rb:42>}, @results_cache={}>, :libvirt=>#<Vagrant::Registry:0x00000002d63650 @items={:nic_mac_addresses=>#<Proc:0x000000032ec400@/home/tosystems/.vagrant.d/gems/2.2.5/gems/vagrant-libvirt-0.0.36/lib/vagrant-libvirt/plugin.rb:38>}, @results_cache={}>}>)
 INFO interface: info: Bringing machine 'default' up with 'libvirt' provider...
Bringing machine 'default' up with 'libvirt' provider...
 INFO batch_action: Enabling parallelization by default.
 INFO batch_action: Disabling parallelization because only executing one action
 INFO batch_action: Batch action will parallelize: false
 INFO batch_action: Starting action: #<Vagrant::Machine:0x00000003310238> up {:destroy_on_error=>true, :install_provider=>true, :parallel=>true, :provision_ignore_sentinel=>false, :provision_types=>nil, :provider=>"libvirt"}
 INFO machine: Calling action: up on provider Libvirt (new)
DEBUG environment: Attempting to acquire process-lock: machine-action-16fb246ab8cafeae4129959a5cafcc54
DEBUG environment: Attempting to acquire process-lock: dotlock
 INFO environment: Acquired process lock: dotlock
 INFO environment: Released process lock: dotlock
 INFO environment: Acquired process lock: machine-action-16fb246ab8cafeae4129959a5cafcc54
 INFO interface: Machine: action ["up", "start", {:target=>:default}]
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 2 hooks defined.
 INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x000000035cf3c0>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::ConfigValidate:0x000000034fa3c8>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x000000034fa3a0>
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 2 hooks defined.
 INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x00000003446648>
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderLibvirt::Action::IsCreated:0x0000000342b668>
 INFO warden: Calling OUT action: #<VagrantPlugins::ProviderLibvirt::Action::IsCreated:0x0000000342b668>
 INFO driver: Connecting to Libvirt (qemu:///system?no_verify=1&keyfile=/home/tosystems/.ssh/id_rsa) ...
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 2 hooks defined.
 INFO runner: Running action: machine_action_up #<Vagrant::Action::Warden:0x000000037448e0>
 INFO warden: Calling IN action: #<Proc:0x007fae7890efd8@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderLibvirt::Action::SetNameOfDomain:0x000000037447f0>
 INFO set_name_of_domain: Looking for domain tosystems_default through list []
 INFO set_name_of_domain: Looking for domain tosystems_default
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderLibvirt::Action::HandleStoragePool:0x007fae784b33d0>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::HandleBox:0x007fae784e3990>
 INFO interface: output: Box 'debian/jessie64' could not be found. Attempting to find and install...
 INFO interface: output: ==> default: Box 'debian/jessie64' could not be found. Attempting to find and install...
==> default: Box 'debian/jessie64' could not be found. Attempting to find and install...
 INFO interface: detail: Box Provider: libvirt
 INFO interface: detail:     default: Box Provider: libvirt
    default: Box Provider: libvirt
 INFO interface: detail: Box Version: >= 0
 INFO interface: detail:     default: Box Version: >= 0
    default: Box Version: >= 0
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 2 hooks defined.
 INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x007fae788a75e0>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::BoxAdd:0x007fae787ebb38>
 INFO environment: Running hook: authenticate_box_url
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 3 hooks defined.
 INFO runner: Running action: authenticate_box_url #<Vagrant::Action::Builder:0x007fae7877d4f8>
 INFO warden: Calling IN action: #<VagrantPlugins::LoginCommand::AddAuthentication:0x00000003616a90>
DEBUG client: No authentication token in environment or /home/tosystems/.vagrant.d/data/vagrant_login_token
 INFO warden: Calling OUT action: #<VagrantPlugins::LoginCommand::AddAuthentication:0x00000003616a90>
 INFO box_add: Downloading box: https://atlas.hashicorp.com/debian/jessie64 => /home/tosystems/.vagrant.d/tmp/boxd350fb07a00243e8c3dcc32fac29354e22a6eb99
 INFO downloader: HEAD: https://atlas.hashicorp.com/debian/jessie64
 INFO subprocess: Starting process: ["/opt/vagrant/embedded/bin/curl", "-I", "-q", "--fail", "--location", "--max-redirs", "10", "--user-agent", "Vagrant/1.9.1 (+https://www.vagrantup.com; ruby2.2.5)", "--continue-at", "-", "-H", "Accept: application/json", "https://atlas.hashicorp.com/debian/jessie64"]
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stderr:   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:--  0:00:15 --:--:--     0
  0   115    0     0    0     0      0      0 --:--:--  0:00:15 --:--:--     0
  0     0    0     0    0     0      0      0 --:--:--  0:00:15 --:--:--     0
DEBUG subprocess: stdout: HTTP/1.1 301 Moved Permanently
Cache-Control: no-cache
Content-Length: 115
Content-Type: text/html
Date: Mon, 19 Dec 2016 03:13:28 GMT
Location: https://atlas.hashicorp.com/debian/boxes/jessie64
Server: nginx + Phusion Passenger 5.0.29
Status: 301 Moved Permanently
X-Powered-By: Phusion Passenger 5.0.29
X-Request-Id: ee9024e6-3f93-4113-9f50-7fb354eef761
X-Runtime: 0.003474
Connection: keep-alive

HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json
Date: Mon, 19 Dec 2016 03:13:28 GMT
Server: nginx + Phusion Passenger 5.0.29
Status: 200 OK
Strict-Transport-Security: max-age=31536000; includeSubDomains; preload
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-Powered-By: Phusion Passenger 5.0.29
X-Request-Id: a9fc20f5-fbe6-4d6e-b6fb-5d47fad0813f
X-Runtime: 0.022233
X-XSS-Protection: 1; mode=block
Connection: keep-alive

DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31984
DEBUG subprocess: Exit status: 0
 INFO interface: output: Loading metadata for box 'debian/jessie64'
 INFO interface: output: ==> default: Loading metadata for box 'debian/jessie64'
==> default: Loading metadata for box 'debian/jessie64'
 INFO interface: detail: URL: https://atlas.hashicorp.com/debian/jessie64
 INFO interface: detail:     default: URL: https://atlas.hashicorp.com/debian/jessie64
    default: URL: https://atlas.hashicorp.com/debian/jessie64
 INFO box_add: Downloading box: https://atlas.hashicorp.com/debian/jessie64 => /home/tosystems/.vagrant.d/tmp/boxd350fb07a00243e8c3dcc32fac29354e22a6eb99
 INFO downloader: Downloader starting download: 
 INFO downloader:   -- Source: https://atlas.hashicorp.com/debian/jessie64
 INFO downloader:   -- Destination: /home/tosystems/.vagrant.d/tmp/boxd350fb07a00243e8c3dcc32fac29354e22a6eb99
 INFO subprocess: Starting process: ["/opt/vagrant/embedded/bin/curl", "-q", "--fail", "--location", "--max-redirs", "10", "--user-agent", "Vagrant/1.9.1 (+https://www.vagrantup.com; ruby2.2.5)", "--continue-at", "-", "-H", "Accept: application/json", "--output", "/home/tosystems/.vagrant.d/tmp/boxd350fb07a00243e8c3dcc32fac29354e22a6eb99", "https://atlas.hashicorp.com/debian/jessie64"]
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stderr:   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:--  0:00:15 --:--:--     0
100   115  100   115    0     0      7      0  0:00:16  0:00:15  0:00:01   153
  0     0    0     0    0     0      0      0 --:--:--  0:00:15 --:--:--     0
100  7909  100  7909    0     0    492      0  0:00:16  0:00:16 --:--:--  130k
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31984
DEBUG subprocess: Exit status: 0
 INFO environment: Running hook: authenticate_box_url
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 3 hooks defined.
 INFO runner: Running action: authenticate_box_url #<Vagrant::Action::Builder:0x007fae784f02f8>
 INFO warden: Calling IN action: #<VagrantPlugins::LoginCommand::AddAuthentication:0x007fae784c19a8>
DEBUG client: No authentication token in environment or /home/tosystems/.vagrant.d/data/vagrant_login_token
 INFO warden: Calling OUT action: #<VagrantPlugins::LoginCommand::AddAuthentication:0x007fae784c19a8>
 INFO interface: output: Adding box 'debian/jessie64' (v8.5.0) for provider: libvirt
 INFO interface: output: ==> default: Adding box 'debian/jessie64' (v8.5.0) for provider: libvirt
==> default: Adding box 'debian/jessie64' (v8.5.0) for provider: libvirt
 INFO box_collection: Box not found: debian/jessie64 (libvirt)
 INFO box_add: Downloading box: https://atlas.hashicorp.com/debian/boxes/jessie64/versions/8.5.0/providers/libvirt.box => /home/tosystems/.vagrant.d/tmp/box6213fa85efac798e926264d250db9c9eb4f3fbbd
 INFO interface: detail: Downloading: https://atlas.hashicorp.com/debian/boxes/jessie64/versions/8.5.0/providers/libvirt.box
 INFO interface: detail:     default: Downloading: https://atlas.hashicorp.com/debian/boxes/jessie64/versions/8.5.0/providers/libvirt.box
    default: Downloading: https://atlas.hashicorp.com/debian/boxes/jessie64/versions/8.5.0/providers/libvirt.box
 INFO interface: info: Box download is resuming from prior download progress
 INFO interface: info: ==> default: Box download is resuming from prior download progress
==> default: Box download is resuming from prior download progress
 INFO downloader: Downloader starting download: 
 INFO downloader:   -- Source: https://atlas.hashicorp.com/debian/boxes/jessie64/versions/8.5.0/providers/libvirt.box
 INFO downloader:   -- Destination: /home/tosystems/.vagrant.d/tmp/box6213fa85efac798e926264d250db9c9eb4f3fbbd
 INFO subprocess: Starting process: ["/opt/vagrant/embedded/bin/curl", "-q", "--fail", "--location", "--max-redirs", "10", "--user-agent", "Vagrant/1.9.1 (+https://www.vagrantup.com; ruby2.2.5)", "--continue-at", "-", "--output", "/home/tosystems/.vagrant.d/tmp/box6213fa85efac798e926264d250db9c9eb4f3fbbd", "https://atlas.hashicorp.com/debian/boxes/jessie64/versions/8.5.0/providers/libvirt.box"]
DEBUG subprocess: Selecting on IO


....

continuing...

@infernix
Copy link
Member

The box image is downloading. If it is not progressing, check your internet connection. If it is, wait until it completes.

@francisrod01
Copy link
Author

francisrod01 commented Dec 19, 2016

Output here:

INFO interface: info: Progress: 100%

 INFO warden: Calling IN action: #<VagrantPlugins::ProviderLibvirt::Action::CreateDomainVolume:0x007fae785416f8>
 INFO interface: info: Creating image (snapshot of base box volume).
 INFO interface: info: ==> default: Creating image (snapshot of base box volume).
==> default: Creating image (snapshot of base box volume).
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderLibvirt::Action::CreateDomain:0x000000036c4758>
 INFO interface: info: Creating domain with the following settings...
 INFO interface: info: ==> default: Creating domain with the following settings...
==> default: Creating domain with the following settings...
 INFO interface: info:  -- Name:              tosystems_default
 INFO interface: info: ==> default:  -- Name:              tosystems_default
==> default:  -- Name:              tosystems_default
 INFO interface: info:  -- Domain type:       qemu
 INFO interface: info: ==> default:  -- Domain type:       qemu
==> default:  -- Domain type:       qemu
 INFO interface: info:  -- Cpus:              2
 INFO interface: info: ==> default:  -- Cpus:              2
==> default:  -- Cpus:              2
 INFO interface: info:  -- Memory:            2048M
 INFO interface: info: ==> default:  -- Memory:            2048M
==> default:  -- Memory:            2048M
 INFO interface: info:  -- Management MAC:    
 INFO interface: info: ==> default:  -- Management MAC:    
==> default:  -- Management MAC:    
 INFO interface: info:  -- Loader:            
 INFO interface: info: ==> default:  -- Loader:            
==> default:  -- Loader:            
 INFO interface: info:  -- Base box:          debian/jessie64
 INFO interface: info: ==> default:  -- Base box:          debian/jessie64
==> default:  -- Base box:          debian/jessie64
 INFO interface: info:  -- Storage pool:      default
 INFO interface: info: ==> default:  -- Storage pool:      default
==> default:  -- Storage pool:      default
 INFO interface: info:  -- Image:             /var/lib/libvirt/images/tosystems_default.img (10G)
 INFO interface: info: ==> default:  -- Image:             /var/lib/libvirt/images/tosystems_default.img (10G)
==> default:  -- Image:             /var/lib/libvirt/images/tosystems_default.img (10G)
 INFO interface: info:  -- Volume Cache:      default
 INFO interface: info: ==> default:  -- Volume Cache:      default
==> default:  -- Volume Cache:      default
 INFO interface: info:  -- Kernel:            
 INFO interface: info: ==> default:  -- Kernel:            
==> default:  -- Kernel:            
 INFO interface: info:  -- Initrd:            
 INFO interface: info: ==> default:  -- Initrd:            
==> default:  -- Initrd:            
 INFO interface: info:  -- Graphics Type:     vnc
 INFO interface: info: ==> default:  -- Graphics Type:     vnc
==> default:  -- Graphics Type:     vnc
 INFO interface: info:  -- Graphics Port:     5900
 INFO interface: info: ==> default:  -- Graphics Port:     5900
==> default:  -- Graphics Port:     5900
 INFO interface: info:  -- Graphics IP:       127.0.0.1
 INFO interface: info: ==> default:  -- Graphics IP:       127.0.0.1
==> default:  -- Graphics IP:       127.0.0.1
 INFO interface: info:  -- Graphics Password: Not defined
 INFO interface: info: ==> default:  -- Graphics Password: Not defined
==> default:  -- Graphics Password: Not defined
 INFO interface: info:  -- Video Type:        cirrus
 INFO interface: info: ==> default:  -- Video Type:        cirrus
==> default:  -- Video Type:        cirrus
 INFO interface: info:  -- Video VRAM:        9216
 INFO interface: info: ==> default:  -- Video VRAM:        9216
==> default:  -- Video VRAM:        9216
 INFO interface: info:  -- Keymap:            en-us
 INFO interface: info: ==> default:  -- Keymap:            en-us
==> default:  -- Keymap:            en-us
 INFO interface: info:  -- TPM Path:          
 INFO interface: info: ==> default:  -- TPM Path:          
==> default:  -- TPM Path:          
 INFO interface: info:  -- INPUT:             type=mouse, bus=ps2
 INFO interface: info: ==> default:  -- INPUT:             type=mouse, bus=ps2
==> default:  -- INPUT:             type=mouse, bus=ps2
 INFO interface: info:  -- Command line : 
 INFO interface: info: ==> default:  -- Command line : 
==> default:  -- Command line : 
 INFO machine: New machine ID: "f8f3189e-7407-47df-84a5-4b09795d9d54"
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Provision:0x0000000366c508>
 INFO provision: Checking provisioner sentinel file...
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderLibvirt::Action::PrepareNFSValidIds:0x007fae785d0ad8>
 INFO warden: Calling IN action: #<VagrantPlugins::SyncedFolderNFS::ActionCleanup:0x007fae785fd308>
DEBUG host: Searching for cap: nfs_prune
DEBUG host: Checking in: linux
DEBUG host: Found cap: nfs_prune in linux
 INFO nfs: NFS pruning. Valid IDs: ["f8f3189e-7407-47df-84a5-4b09795d9d54"]
DEBUG host: Searching for cap: nfs_prune
DEBUG host: Checking in: linux
DEBUG host: Found cap: nfs_prune in linux
 INFO host: Execute capability: nfs_prune [#<Vagrant::Environment: /home/tosystems>, #<Vagrant::UI::Prefixed:0x00000002e410b8 @logger=#<Log4r::Logger:0x00000002e40ed8 @fullname="vagrant::ui::interface", @outputters=[], @additive=true, @name="interface", @path="vagrant::ui", @parent=#<Log4r::Logger:0x0000000283f3e0 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x000000027d0328 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x000000027d0170>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x000000027bb0b8 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0000000283f250 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @opts={}, @stdin=#<IO:<STDIN>>, @stdout=#<IO:<STDOUT>>, @stderr=#<IO:<STDERR>>, @prefix=:default, @ui=#<Vagrant::UI::Colored:0x0000000348a140 @logger=#<Log4r::Logger:0x0000000348a0c8 @fullname="vagrant::ui::interface", @outputters=[], @additive=true, @name="interface", @path="vagrant::ui", @parent=#<Log4r::Logger:0x0000000283f3e0 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x000000027d0328 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x000000027d0170>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x000000027bb0b8 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0000000283f250 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @opts={:color=>:default}, @stdin=#<IO:<STDIN>>, @stdout=#<IO:<STDOUT>>, @stderr=#<IO:<STDERR>>, @lock=#<Mutex:0x000000034452c0>>>, ["f8f3189e-7407-47df-84a5-4b09795d9d54"]] (linux)
 INFO linux: Pruning invalid NFS entries...
DEBUG linux: Known valid NFS export IDs: ["f8f3189e-7407-47df-84a5-4b09795d9d54"]
DEBUG linux: Composite valid NFS export IDs with user: ["1000 f8f3189e-7407-47df-84a5-4b09795d9d54"]
DEBUG linux: NFS export IDs to be removed: []
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::SyncedFolderCleanup:0x007fae78632f30>
 INFO synced_folder_cleanup: Invoking synced folder cleanup for: rsync
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::SyncedFolders:0x007fae7866be20>
 INFO synced_folders: SyncedFolders loading from cache: false
 INFO synced_folders: Synced Folder Implementation: rsync
 INFO synced_folders:   - /home/vagrant/vagrant_rojects: ~/Documents/projects => /home/vagrant/vagrant_rojects
 INFO synced_folders:   - /vagrant: . => /vagrant
 INFO synced_folders: Invoking synced folder prepare for: rsync
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderLibvirt::Action::PrepareNFSSettings:0x007fae78699910>
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderLibvirt::Action::ShareFolders:0x000000035b9ea8>
 INFO interface: info: Creating shared folders metadata...
 INFO interface: info: ==> default: Creating shared folders metadata...
==> default: Creating shared folders metadata...
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderLibvirt::Action::CreateNetworks:0x007fae787018f8>
 INFO create_networks: Using vagrant-libvirt at 192.168.121.0/24 as the management network nat is the mode
DEBUG create_networks: In config found network type private_network options {:ip=>"192.168.33.10", :protocol=>"tcp", :id=>"79668166-e04a-44fd-9cb6-c4481c415720"}
DEBUG create_networks: In config found network type forwarded_port options {:guest=>22, :host=>2222, :host_ip=>"127.0.0.1", :id=>"ssh", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_networks: Searching for network with options {:iface_type=>:private_network, :network_name=>"vagrant-libvirt", :ip=>"192.168.121.0", :netmask=>"255.255.255.0", :dhcp_enabled=>true, :forward_mode=>"nat", :guest_ipv6=>"yes"}
DEBUG create_networks: looking up network with ip == 192.168.121.0
DEBUG create_networks: Checking that network name does not clash with ip
DEBUG create_networks: looking up network named vagrant-libvirt
DEBUG create_networks: generating name for bridge
DEBUG create_networks: looking up bridge named virbr0
DEBUG create_networks: looking up bridge named virbr1
DEBUG create_networks: found available bridge name virbr1
DEBUG create_networks: created network
 INFO create_networks: Saving information about created network vagrant-libvirt, UUID=379f7d4f-473e-4fc4-b5e0-bb9e2711c8c1 to file /home/tosystems/.vagrant/machines/default/libvirt/created_networks.
DEBUG create_networks: Searching for network with options {:iface_type=>:private_network, :netmask=>"255.255.255.0", :dhcp_enabled=>true, :forward_mode=>"nat", :ip=>"192.168.33.10", :protocol=>"tcp", :id=>"79668166-e04a-44fd-9cb6-c4481c415720"}
DEBUG create_networks: looking up network with ip == 192.168.33.0
DEBUG create_networks: generating name for network
DEBUG create_networks: looking up network named tosystems0
DEBUG create_networks: generating name for bridge
DEBUG create_networks: looking up bridge named virbr0
DEBUG create_networks: looking up bridge named virbr1
DEBUG create_networks: looking up bridge named virbr2
DEBUG create_networks: found available bridge name virbr2
DEBUG create_networks: created network
 INFO create_networks: Saving information about created network tosystems0, UUID=6667600d-b6b2-4794-9bf8-ab10ce9712f0 to file /home/tosystems/.vagrant/machines/default/libvirt/created_networks.
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderLibvirt::Action::CreateNetworkInterfaces:0x007fae78abe928>
 INFO create_network_interfaces: Using vagrant-libvirt at 192.168.121.0/24 as the management network nat is the mode
DEBUG create_network_interfaces: In config found network type private_network options {:ip=>"192.168.33.10", :protocol=>"tcp", :id=>"79668166-e04a-44fd-9cb6-c4481c415720"}
DEBUG create_network_interfaces: In config found network type forwarded_port options {:guest=>22, :host=>2222, :host_ip=>"127.0.0.1", :id=>"ssh", :auto_correct=>true, :protocol=>"tcp"}
DEBUG create_network_interfaces: Adapter not specified so found slot 0
DEBUG create_network_interfaces: Found network by name
DEBUG create_network_interfaces: Adapter not specified so found slot 1
DEBUG create_network_interfaces: Found network by ip
 INFO create_network_interfaces: Creating network interface eth0 connected to network vagrant-libvirt.
 INFO create_network_interfaces: Creating network interface eth1 connected to network tosystems0.
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderLibvirt::Action::SetBootOrder:0x007fae78a75700>
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderLibvirt::Action::StartDomain:0x007fae78a2d590>
 INFO interface: info: Starting domain.
 INFO interface: info: ==> default: Starting domain.
==> default: Starting domain.
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderLibvirt::Action::WaitTillUp:0x007fae789e49f8>
DEBUG wait_till_up: Searching for IP for MAC address: 52:54:00:26:a9:44
 INFO interface: info: Waiting for domain to get an IP address...
 INFO interface: info: ==> default: Waiting for domain to get an IP address...
==> default: Waiting for domain to get an IP address...
 INFO retryable: Retryable exception raised: #<Fog::Errors::TimeoutError: The specified wait_for timeout (2 seconds) was exceeded>
 INFO retryable: Retryable exception raised: #<Fog::Errors::TimeoutError: The specified wait_for timeout (2 seconds) was exceeded>
 INFO retryable: Retryable exception raised: #<Fog::Errors::TimeoutError: The specified wait_for timeout (2 seconds) was exceeded>
 INFO retryable: Retryable exception raised: #<Fog::Errors::TimeoutError: The specified wait_for timeout (2 seconds) was exceeded>
 INFO retryable: Retryable exception raised: #<Fog::Errors::TimeoutError: The specified wait_for timeout (2 seconds) was exceeded>
 INFO retryable: Retryable exception raised: #<Fog::Errors::TimeoutError: The specified wait_for timeout (2 seconds) was exceeded>
 INFO retryable: Retryable exception raised: #<Fog::Errors::TimeoutError: The specified wait_for timeout (2 seconds) was exceeded>
 INFO retryable: Retryable exception raised: #<Fog::Errors::TimeoutError: The specified wait_for timeout (2 seconds) was exceeded>
 INFO retryable: Retryable exception raised: #<Fog::Errors::TimeoutError: The specified wait_for timeout (2 seconds) was exceeded>
 INFO retryable: Retryable exception raised: #<Fog::Errors::TimeoutError: The specified wait_for timeout (2 seconds) was exceeded>
 INFO retryable: Retryable exception raised: #<Fog::Errors::TimeoutError: The specified wait_for timeout (2 seconds) was exceeded>
 INFO retryable: Retryable exception raised: #<Fog::Errors::TimeoutError: The specified wait_for timeout (2 seconds) was exceeded>
 INFO retryable: Retryable exception raised: #<Fog::Errors::TimeoutError: The specified wait_for timeout (2 seconds) was exceeded>
 INFO retryable: Retryable exception raised: #<Fog::Errors::TimeoutError: The specified wait_for timeout (2 seconds) was exceeded>
 INFO retryable: Retryable exception raised: #<Fog::Errors::TimeoutError: The specified wait_for timeout (2 seconds) was exceeded>
 INFO retryable: Retryable exception raised: #<Fog::Errors::TimeoutError: The specified wait_for timeout (2 seconds) was exceeded>
 INFO retryable: Retryable exception raised: #<Fog::Errors::TimeoutError: The specified wait_for timeout (2 seconds) was exceeded>
 INFO retryable: Retryable exception raised: #<Fog::Errors::TimeoutError: The specified wait_for timeout (2 seconds) was exceeded>
 INFO retryable: Retryable exception raised: #<Fog::Errors::TimeoutError: The specified wait_for timeout (2 seconds) was exceeded>
 INFO retryable: Retryable exception raised: #<Fog::Errors::TimeoutError: The specified wait_for timeout (2 seconds) was exceeded>
 INFO retryable: Retryable exception raised: #<Fog::Errors::TimeoutError: The specified wait_for timeout (2 seconds) was exceeded>
 INFO retryable: Retryable exception raised: #<Fog::Errors::TimeoutError: The specified wait_for timeout (2 seconds) was exceeded>
 INFO retryable: Retryable exception raised: #<Fog::Errors::TimeoutError: The specified wait_for timeout (2 seconds) was exceeded>
 INFO retryable: Retryable exception raised: #<Fog::Errors::TimeoutError: The specified wait_for timeout (2 seconds) was exceeded>
 INFO retryable: Retryable exception raised: #<Fog::Errors::TimeoutError: The specified wait_for timeout (2 seconds) was exceeded>
 INFO retryable: Retryable exception raised: #<Fog::Errors::TimeoutError: The specified wait_for timeout (2 seconds) was exceeded>
 INFO retryable: Retryable exception raised: #<Fog::Errors::TimeoutError: The specified wait_for timeout (2 seconds) was exceeded>
 INFO retryable: Retryable exception raised: #<Fog::Errors::TimeoutError: The specified wait_for timeout (2 seconds) was exceeded>
ERROR warden: Error occurred: Call to virNetworkGetDHCPLeases failed: internal error: no lease with matching MAC address: 52:54:00:26:a9:44
 INFO warden: Beginning recovery process...
 INFO warden: Calling recover: #<VagrantPlugins::ProviderLibvirt::Action::WaitTillUp:0x007fae789e49f8>
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 2 hooks defined.
 INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x000000033780e0>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::ConfigValidate:0x000000033533d0>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x00000003353380>
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 2 hooks defined.
 INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x000000024cbc40>
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderLibvirt::Action::IsCreated:0x000000024ae4b0>
 INFO warden: Calling OUT action: #<VagrantPlugins::ProviderLibvirt::Action::IsCreated:0x000000024ae4b0>
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 2 hooks defined.
 INFO runner: Running action: machine_action_up #<Vagrant::Action::Warden:0x007fae78d13048>
 INFO warden: Calling IN action: #<Proc:0x007fae789825a0@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderLibvirt::Action::ClearForwardedPorts:0x007fae78d12f58>
 INFO clear_forward_ports: No ssh pids found
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderLibvirt::Action::DestroyDomain:0x007fae78c975b0>
 INFO interface: info: Removing domain...
 INFO interface: info: ==> default: Removing domain...
==> default: Removing domain...
 INFO warden: Calling IN action: #<VagrantPlugins::ProviderLibvirt::Action::DestroyNetworks:0x007fae78b43a10>
 INFO destroy_networks: Checking if any networks were created
 INFO destroy_networks: File with created networks exists
 INFO destroy_networks: Checking for 379f7d4f-473e-4fc4-b5e0-bb9e2711c8c1

 INFO destroy_networks: Undefined it
 INFO destroy_networks: Checking for 6667600d-b6b2-4794-9bf8-ab10ce9712f0

 INFO destroy_networks: Undefined it
 INFO destroy_networks: Deleting created_networks file
 INFO machine: New machine ID: nil
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::ProvisionerCleanup:0x007fae78aa7db8>
 INFO warden: Calling IN action: #<Proc:0x007fae78a21560@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling OUT action: #<Proc:0x007fae78a21560@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::ProvisionerCleanup:0x007fae78aa7db8>
 INFO warden: Calling OUT action: #<VagrantPlugins::ProviderLibvirt::Action::DestroyNetworks:0x007fae78b43a10>
 INFO warden: Calling OUT action: #<VagrantPlugins::ProviderLibvirt::Action::DestroyDomain:0x007fae78c975b0>
 INFO warden: Calling OUT action: #<VagrantPlugins::ProviderLibvirt::Action::ClearForwardedPorts:0x007fae78d12f58>
 INFO warden: Calling OUT action: #<Proc:0x007fae789825a0@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::Call:0x00000003353380>
 INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::ConfigValidate:0x000000033533d0>
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
ERROR warden: Error occurred: Call to virNetworkGetDHCPLeases failed: internal error: no lease with matching MAC address: 52:54:00:26:a9:44
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
ERROR warden: Error occurred: Call to virNetworkGetDHCPLeases failed: internal error: no lease with matching MAC address: 52:54:00:26:a9:44
 INFO warden: Beginning recovery process...
 INFO warden: Calling recover: #<Vagrant::Action::Builtin::Call:0x000000034fa3a0>
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO environment: Released process lock: machine-action-16fb246ab8cafeae4129959a5cafcc54
 INFO environment: Running hook: environment_unload
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 2 hooks defined.
 INFO runner: Running action: environment_unload #<Vagrant::Action::Builder:0x007fae7881d8b8>
/home/tosystems/.vagrant.d/gems/2.2.5/gems/fog-libvirt-0.3.0/lib/fog/libvirt/requests/compute/dhcp_leases.rb:8:in `dhcp_leases': Call to virNetworkGetDHCPLeases failed: internal error: no lease with matching MAC address: 52:54:00:26:a9:44 (Libvirt::Error)
	from /home/tosystems/.vagrant.d/gems/2.2.5/gems/fog-libvirt-0.3.0/lib/fog/libvirt/requests/compute/dhcp_leases.rb:8:in `dhcp_leases'
	from /home/tosystems/.vagrant.d/gems/2.2.5/gems/fog-libvirt-0.3.0/lib/fog/libvirt/models/compute/network.rb:20:in `dhcp_leases'
	from /home/tosystems/.vagrant.d/gems/2.2.5/gems/fog-libvirt-0.3.0/lib/fog/libvirt/models/compute/server.rb:272:in `block in addresses'
	from /home/tosystems/.vagrant.d/gems/2.2.5/gems/fog-core-1.43.0/lib/fog/core/collection.rb:19:in `each'
	from /home/tosystems/.vagrant.d/gems/2.2.5/gems/fog-core-1.43.0/lib/fog/core/collection.rb:19:in `each'
	from /home/tosystems/.vagrant.d/gems/2.2.5/gems/fog-libvirt-0.3.0/lib/fog/libvirt/models/compute/server.rb:270:in `addresses'
	from /home/tosystems/.vagrant.d/gems/2.2.5/gems/vagrant-libvirt-0.0.36/lib/vagrant-libvirt/action/wait_till_up.rb:44:in `block (3 levels) in call'
	from /home/tosystems/.vagrant.d/gems/2.2.5/gems/fog-core-1.43.0/lib/fog/core/model.rb:72:in `instance_eval'
	from /home/tosystems/.vagrant.d/gems/2.2.5/gems/fog-core-1.43.0/lib/fog/core/model.rb:72:in `block in wait_for'
	from /home/tosystems/.vagrant.d/gems/2.2.5/gems/fog-core-1.43.0/lib/fog/core/wait_for.rb:7:in `block in wait_for'
	from /home/tosystems/.vagrant.d/gems/2.2.5/gems/fog-core-1.43.0/lib/fog/core/wait_for.rb:6:in `loop'
	from /home/tosystems/.vagrant.d/gems/2.2.5/gems/fog-core-1.43.0/lib/fog/core/wait_for.rb:6:in `wait_for'
	from /home/tosystems/.vagrant.d/gems/2.2.5/gems/fog-core-1.43.0/lib/fog/core/model.rb:69:in `wait_for'
	from /home/tosystems/.vagrant.d/gems/2.2.5/gems/vagrant-libvirt-0.0.36/lib/vagrant-libvirt/action/wait_till_up.rb:43:in `block (2 levels) in call'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/util/retryable.rb:17:in `retryable'
	from /home/tosystems/.vagrant.d/gems/2.2.5/gems/vagrant-libvirt-0.0.36/lib/vagrant-libvirt/action/wait_till_up.rb:38:in `block in call'
	from /home/tosystems/.vagrant.d/gems/2.2.5/gems/vagrant-libvirt-0.0.36/lib/vagrant-libvirt/util/timer.rb:9:in `time'
	from /home/tosystems/.vagrant.d/gems/2.2.5/gems/vagrant-libvirt-0.0.36/lib/vagrant-libvirt/action/wait_till_up.rb:35:in `call'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
	from /home/tosystems/.vagrant.d/gems/2.2.5/gems/vagrant-libvirt-0.0.36/lib/vagrant-libvirt/action/start_domain.rb:294:in `call'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
	from /home/tosystems/.vagrant.d/gems/2.2.5/gems/vagrant-libvirt-0.0.36/lib/vagrant-libvirt/action/set_boot_order.rb:60:in `call'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
	from /home/tosystems/.vagrant.d/gems/2.2.5/gems/vagrant-libvirt-0.0.36/lib/vagrant-libvirt/action/create_network_interfaces.rb:144:in `call'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
	from /home/tosystems/.vagrant.d/gems/2.2.5/gems/vagrant-libvirt-0.0.36/lib/vagrant-libvirt/action/create_networks.rb:80:in `call'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
	from /home/tosystems/.vagrant.d/gems/2.2.5/gems/vagrant-libvirt-0.0.36/lib/vagrant-libvirt/action/share_folders.rb:20:in `call'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
	from /home/tosystems/.vagrant.d/gems/2.2.5/gems/vagrant-libvirt-0.0.36/lib/vagrant-libvirt/action/prepare_nfs_settings.rb:18:in `call'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/builtin/synced_folders.rb:87:in `call'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/builtin/synced_folder_cleanup.rb:28:in `call'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/synced_folders/nfs/action_cleanup.rb:25:in `call'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
	from /home/tosystems/.vagrant.d/gems/2.2.5/gems/vagrant-libvirt-0.0.36/lib/vagrant-libvirt/action/prepare_nfs_valid_ids.rb:12:in `call'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/builtin/provision.rb:80:in `call'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
	from /home/tosystems/.vagrant.d/gems/2.2.5/gems/vagrant-libvirt-0.0.36/lib/vagrant-libvirt/action/create_domain.rb:253:in `call'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
	from /home/tosystems/.vagrant.d/gems/2.2.5/gems/vagrant-libvirt-0.0.36/lib/vagrant-libvirt/action/create_domain_volume.rb:51:in `call'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
	from /home/tosystems/.vagrant.d/gems/2.2.5/gems/vagrant-libvirt-0.0.36/lib/vagrant-libvirt/action/handle_box_image.rb:111:in `call'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/builtin/handle_box.rb:56:in `call'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
	from /home/tosystems/.vagrant.d/gems/2.2.5/gems/vagrant-libvirt-0.0.36/lib/vagrant-libvirt/action/handle_storage_pool.rb:50:in `call'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
	from /home/tosystems/.vagrant.d/gems/2.2.5/gems/vagrant-libvirt-0.0.36/lib/vagrant-libvirt/action/set_name_of_domain.rb:35:in `call'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/builder.rb:116:in `call'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/runner.rb:66:in `block in run'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/util/busy.rb:19:in `busy'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/runner.rb:66:in `run'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/builtin/call.rb:53:in `call'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/builtin/config_validate.rb:25:in `call'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/builder.rb:116:in `call'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/runner.rb:66:in `block in run'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/util/busy.rb:19:in `busy'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/runner.rb:66:in `run'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/machine.rb:225:in `action_raw'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/machine.rb:200:in `block in action'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/environment.rb:567:in `lock'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/machine.rb:186:in `call'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/machine.rb:186:in `action'
	from /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/batch_action.rb:82:in `block (2 levels) in run'
tosystems@debian:~$ 
tosystems@debian:~$ 

I follow the steps from issue #674 but in my case, sudo virsh net-list returns empty.

@infernix
Copy link
Member

You're now running into #674. Try downgrading:

vagrant plugin uninstall vagrant-libvirt
vagrant plugin install vagrant-libvirt --plugin-version 0.0.35

@francisrod01
Copy link
Author

francisrod01 commented Dec 19, 2016

For the first command:

~$ vagrant plugin uninstall vagrant-libvirt
Uninstalling the 'vagrant-libvirt' plugin...
Successfully uninstalled fog-libvirt-0.3.0
Successfully uninstalled excon-0.54.0
Successfully uninstalled formatador-0.2.5
Successfully uninstalled fog-json-1.0.2
Successfully uninstalled vagrant-libvirt-0.0.36
Successfully uninstalled ruby-libvirt-0.7.0
Successfully uninstalled fog-xml-0.1.2
Successfully uninstalled fog-core-1.43.0
~$ vagrant plugin install vagrant-libvirt --plugin-version 0.0.35

output here:

Installing the 'vagrant-libvirt --version '0.0.35'' plugin. This can take a few minutes...
Fetching: formatador-0.2.5.gem (100%)
Fetching: excon-0.54.0.gem (100%)
Fetching: fog-core-1.43.0.gem (100%)
Fetching: ruby-libvirt-0.6.0.gem (100%)
Building native extensions.  This could take a while...
Fetching: fog-xml-0.1.2.gem (100%)
Fetching: fog-json-1.0.2.gem (100%)
Fetching: fog-libvirt-0.0.3.gem (100%)
Fetching: vagrant-libvirt-0.0.35.gem (100%)
Installed the plugin 'vagrant-libvirt (0.0.35)'!

and...

$ vagrant up

output:

Ignoring ruby-libvirt-0.6.0 because its extensions are not built.  Try: gem pristine ruby-libvirt --version 0.6.0
Bringing machine 'default' up with 'libvirt' provider...
==> default: Creating image (snapshot of base box volume).
==> default: Creating domain with the following settings...
==> default:  -- Name:              tosystems_default
==> default:  -- Domain type:       qemu
==> default:  -- Cpus:              2
==> default:  -- Memory:            2048M
==> default:  -- Management MAC:    
==> default:  -- Loader:            
==> default:  -- Base box:          debian/jessie64
==> default:  -- Storage pool:      default
==> default:  -- Image:             /var/lib/libvirt/images/tosystems_default.img (10G)
==> default:  -- Volume Cache:      default
==> default:  -- Kernel:            
==> default:  -- Initrd:            
==> default:  -- Graphics Type:     vnc
==> default:  -- Graphics Port:     5900
==> default:  -- Graphics IP:       127.0.0.1
==> default:  -- Graphics Password: Not defined
==> default:  -- Video Type:        cirrus
==> default:  -- Video VRAM:        9216
==> default:  -- Keymap:            en-us
==> default:  -- TPM Path:          
==> default:  -- INPUT:             type=mouse, bus=ps2
==> default:  -- Command line : 
==> default: Creating shared folders metadata...
==> default: Starting domain.
==> default: Waiting for domain to get an IP address...
==> default: Waiting for SSH to become available...
    default: 
    default: Vagrant insecure key detected. Vagrant will automatically replace
    default: this with a newly generated keypair for better security.
    default: 
    default: Inserting generated public key within guest...
    default: Removing insecure key from the guest if it's present...
    default: Key inserted! Disconnecting and reconnecting using new SSH key...
==> default: Configuring and enabling network interfaces...
==> default: Rsyncing folder: /home/tosystems/Documents/projects/ => /home/vagrant/vagrant_rojects

...

for now it's run the sync

@infernix
Copy link
Member

So it's safe to say that vagrant-libvirt 0.0.35 works for you; you will need to review your configuration for your initial Vagrantfile and/or check your box for misconfiguration.

@francisrod01
Copy link
Author

Yeah but the output above it's not finished yet.

But I have to say, the provider with libvirt is taking too long to sync the directories between the VM and my machine. Do you recommend any modifications to performance?

@infernix
Copy link
Member

Based on the above output I can already conclude that vagrant-libvirt 0.0.35 works fine.

As for speed, use nfs instead of rsync.

@francisrod01
Copy link
Author

francisrod01 commented Dec 19, 2016

Thanks @infernix for all.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants