Skip to content

Instantly share code, notes, and snippets.

@AgentCormac
Created June 23, 2016 21:04
Show Gist options
  • Save AgentCormac/0bde7c685cabcc67fac7f6a5f453ba66 to your computer and use it in GitHub Desktop.
Save AgentCormac/0bde7c685cabcc67fac7f6a5f453ba66 to your computer and use it in GitHub Desktop.
Vagrant to Docker volume mapping
################################################################
#
# Author: Mark Higginbottom
#
# Date: 13/6/2016
#
#Vagrant HOST file to create DOCKERHOST for docker containers
#
#
################################################################
ENV["VAGRANT_DETECTED_OS"] = ENV["VAGRANT_DETECTED_OS"].to_s + " cygwin"
FORWARD_DOCKER_PORTS='true'
Vagrant.configure(2) do |config|
config.vm.provision "docker"
# The following line terminates all ssh connections. Therefore
# Vagrant will be forced to reconnect.
# That's a workaround to have the docker command in the PATH
#Clear any existing ssh connections
####NOTE: ps aux seems to give variable results depending on rbox -> process number can be ####first #or second causing provision to fail!!!
config.vm.provision "clear-ssh", type: "shell", inline:
# "ps aux | grep 'sshd:' | awk '{print $1}' | xargs kill" #dduportal/boot2docker ONLY
"ps aux | grep 'sshd:' | awk '{print $2}' | xargs kill" #Every other box
#Info script
$script = <<SCRIPT
echo Environment information....
cat /etc/issue
cat /etc/*-release
uname -a
mkdir -p /home/vagrant/workspace/shared-data/postgres/data
chown -R vagrant:vagrant /home/vagrant/workspace
SCRIPT
config.vm.provision "info", type: "shell", inline: $script
config.vm.define "dockerhost"
config.vm.box = "bento/centos-7.2"
#Project specific config needed on docker host
config.vm.network "forwarded_port",guest: 8080, host: 8080 # Tomcat
config.vm.network "forwarded_port",guest: 8000, host: 8000 # Tomcat debug. Dont think this is exposed by the image
config.vm.network "forwarded_port",guest: 3306, host: 3306 # MySQL
config.vm.network "forwarded_port",guest: 5432, host: 5432 # PostgreSQL
config.vm.network "forwarded_port",guest: 9080, host: 9080 # Jenkins -> Map to 8080 in container
config.vm.network "forwarded_port",guest: 50000, host: 50000 # Jenkins
# Share an additional COMMON folder to the guest VM. The first argument is
# the path on the host to the actual folder. Sets up a common folder for use by the
# utility data-container for sharing ata with host and between containers.
# 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 "C:/dev/vagrant/workspace/SpringMVCHibernate/shared-data/mysql", "/home/vagrant/workspace/shared-data/mysql"
config.vm.synced_folder "C:/dev/vagrant/workspace/SpringMVCHibernate/shared-data/postgres/data", "/home/vagrant/workspace/shared-data/postgres/data"
config.vm.synced_folder "C:/dev/vagrant/workspace/SpringMVCHibernate/shared-data/tomcat", "/home/vagrant/workspace/shared-data/tomcat"
config.vm.synced_folder "C:/dev/vagrant/workspace/SpringMVCHibernate/shared-data/jenkins", "/home/vagrant/workspace/shared-data/jenkins"
# 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|
vb.name = "dockerhost"
# # Display the VirtualBox GUI when booting the machine
# vb.gui = true
#
# # Customize the amount of memory on the VM:
# vb.memory = "1024"
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
# sudo apt-get update
# sudo curl -fsSL https://get.docker.com/ | sh
# sudo service docker start
# sudo usermod -a -G docker $USER
sudo chkconfig docker on
sudo yum install -y vim
# sudo apt-get install -y apache2
SHELL
end
INFO global: Vagrant version: 1.8.1
INFO global: Ruby version: 2.2.3
INFO global: RubyGems version: 2.4.5.1
INFO global: VAGRANT_EXECUTABLE="C:\\HashiCorp\\Vagrant\\embedded\\gems\\gems\\vagrant-1.8.1\\bin\\vagrant"
INFO global: VAGRANT_INSTALLER_EMBEDDED_DIR="C:\\HashiCorp\\Vagrant\\embedded"
INFO global: VAGRANT_INSTALLER_ENV="1"
INFO global: VAGRANT_INSTALLER_VERSION="2"
INFO global: VAGRANT_INTERNAL_BUNDLERIZED="1"
INFO global: VAGRANT_LOG="debug"
INFO global: VAGRANT_OLD_ENV_="Z:=Z:\\"
INFO global: VAGRANT_OLD_ENV_ALLUSERSPROFILE="C:\\ProgramData"
INFO global: VAGRANT_OLD_ENV_ANSICON="103x1000 (103x58)"
INFO global: VAGRANT_OLD_ENV_ANSICON_DEF="7"
INFO global: VAGRANT_OLD_ENV_APPDATA="C:\\Users\\higginbottomm\\AppData\\Roaming"
INFO global: VAGRANT_OLD_ENV_APT_JAVA_HOME="C:\\Java\\jdk1.8.0_65"
INFO global: VAGRANT_OLD_ENV_asl.log="Destination=file"
INFO global: VAGRANT_OLD_ENV_COMMONDIR="C:\\WPS_ADM"
INFO global: VAGRANT_OLD_ENV_CommonProgramFiles="C:\\Program Files (x86)\\Common Files"
INFO global: VAGRANT_OLD_ENV_CommonProgramFiles(x86)="C:\\Program Files (x86)\\Common Files"
INFO global: VAGRANT_OLD_ENV_CommonProgramW6432="C:\\Program Files\\Common Files"
INFO global: VAGRANT_OLD_ENV_COMPUTERNAME="UK060647LT5"
INFO global: VAGRANT_OLD_ENV_ComSpec="C:\\windows\\system32\\cmd.exe"
INFO global: VAGRANT_OLD_ENV_ConEmuANSI="ON"
INFO global: VAGRANT_OLD_ENV_ConEmuAnsiLog=""
INFO global: VAGRANT_OLD_ENV_ConEmuArgs=""
INFO global: VAGRANT_OLD_ENV_ConEmuArgs2=""
INFO global: VAGRANT_OLD_ENV_ConEmuBackHWND="0x00020A0E"
INFO global: VAGRANT_OLD_ENV_ConEmuBaseDir="C:\\Program Files\\ConEmu\\ConEmu"
INFO global: VAGRANT_OLD_ENV_ConEmuBuild="160605"
INFO global: VAGRANT_OLD_ENV_ConEmuConfig=""
INFO global: VAGRANT_OLD_ENV_ConEmuDir="C:\\Program Files\\ConEmu"
INFO global: VAGRANT_OLD_ENV_ConEmuDrawHWND="0x00020A10"
INFO global: VAGRANT_OLD_ENV_ConEmuDrive="C:"
INFO global: VAGRANT_OLD_ENV_ConEmuHooks="Enabled"
INFO global: VAGRANT_OLD_ENV_ConEmuHWND="0x002A087C"
INFO global: VAGRANT_OLD_ENV_ConEmuPalette="<Solarized Light>"
INFO global: VAGRANT_OLD_ENV_ConEmuPID="9516"
INFO global: VAGRANT_OLD_ENV_ConEmuServerPID="8372"
INFO global: VAGRANT_OLD_ENV_ConEmuWorkDir="C:\\Users\\higginbottomm"
INFO global: VAGRANT_OLD_ENV_ConEmuWorkDrive="C:"
INFO global: VAGRANT_OLD_ENV_CYGWIN_HOME="C:\\cygwin64\\bin"
INFO global: VAGRANT_OLD_ENV_DOCKER_TOOLBOX_INSTALL_PATH="C:\\Program Files\\Docker Toolbox"
INFO global: VAGRANT_OLD_ENV_FP_NO_HOST_CHECK="NO"
INFO global: VAGRANT_OLD_ENV_HOMEDRIVE="C:"
INFO global: VAGRANT_OLD_ENV_HOMEPATH="\\Users\\higginbottomm"
INFO global: VAGRANT_OLD_ENV_JAVA_HOME="C:\\Java\\jdk1.8.0_65"
INFO global: VAGRANT_OLD_ENV_LOCALAPPDATA="C:\\Users\\higginbottomm\\AppData\\Local"
INFO global: VAGRANT_OLD_ENV_LOGONSERVER="\\\\EUROPEDUK014"
INFO global: VAGRANT_OLD_ENV_NUMBER_OF_PROCESSORS="8"
INFO global: VAGRANT_OLD_ENV_OS="Windows_NT"
INFO global: VAGRANT_OLD_ENV_Path="C:\\Program Files\\ConEmu\\ConEmu\\Scripts;C:\\cygwin64\\bin;C:\\Java\\jdk1.8.0_65\\bin;C:\\Apt for Java-1.4.2\\bin;C:\\Program Files (x86)\\Common Files\\Microsoft Shared\\Windows Live;c:\\bin;C:\\ProgramData\\Oracle\\Java\\javapath;C:\\windows\\system32;C:\\windows;C:\\windows\\System32\\Wbem;C:\\windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Program Files (x86)\\SafeCom\\SafeComPrintClient;C:\\Program Files (x86)\\Skype\\Phone\\;C:\\Program Files\\SlikSvn\\bin\\;C:\\Program Files\\TortoiseSVN\\bin;C:\\Program Files (x86)\\Windows Live\\Shared;C:\\Program Files\\TortoiseGit\\bin;C:\\Program Files\\Calibre2\\;\"C:\\Program Files (x86)\\MySQL\\MySQL Fabric 1.5 & MySQL Utilities 1.5\\\";\"C:\\Program Files (x86)\\MySQL\\MySQL Fabric 1.5 & MySQL Utilities 1.5\\Doctrine extensions for PHP\\\";C:\\HashiCorp\\Vagrant\\bin;C:\\Program Files\\Docker Toolbox;C:\\Program Files (x86)\\Vim\\vim74;C:\\Program Files (x86)\\CloudFoundry;C:\\Ruby193\\bin;;C:\\Program Files\\Docker Toolbox"
INFO global: VAGRANT_OLD_ENV_PATHEXT=".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC"
INFO global: VAGRANT_OLD_ENV_PROCESSOR_ARCHITECTURE="x86"
INFO global: VAGRANT_OLD_ENV_PROCESSOR_ARCHITEW6432="AMD64"
INFO global: VAGRANT_OLD_ENV_PROCESSOR_IDENTIFIER="Intel64 Family 6 Model 60 Stepping 3, GenuineIntel"
INFO global: VAGRANT_OLD_ENV_PROCESSOR_LEVEL="6"
INFO global: VAGRANT_OLD_ENV_PROCESSOR_REVISION="3c03"
INFO global: VAGRANT_OLD_ENV_ProgramData="C:\\ProgramData"
INFO global: VAGRANT_OLD_ENV_ProgramFiles="C:\\Program Files (x86)"
INFO global: VAGRANT_OLD_ENV_ProgramFiles(x86)="C:\\Program Files (x86)"
INFO global: VAGRANT_OLD_ENV_ProgramW6432="C:\\Program Files"
INFO global: VAGRANT_OLD_ENV_PROMPT="$P$G"
INFO global: VAGRANT_OLD_ENV_PSModulePath="C:\\windows\\system32\\WindowsPowerShell\\v1.0\\Modules\\;C:\\Program Files\\Intel\\"
INFO global: VAGRANT_OLD_ENV_PUBLIC="C:\\Users\\Public"
INFO global: VAGRANT_OLD_ENV_SESSIONNAME="Console"
INFO global: VAGRANT_OLD_ENV_SystemDrive="C:"
INFO global: VAGRANT_OLD_ENV_SystemRoot="C:\\windows"
INFO global: VAGRANT_OLD_ENV_TEMP="C:\\Users\\HIGGIN~1\\AppData\\Local\\Temp"
INFO global: VAGRANT_OLD_ENV_TMP="C:\\Users\\HIGGIN~1\\AppData\\Local\\Temp"
INFO global: VAGRANT_OLD_ENV_UATDATA="C:\\windows\\CCM\\UATData\\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77"
INFO global: VAGRANT_OLD_ENV_USERDNSDOMAIN="EUROPE.FS.FUJITSU.COM"
INFO global: VAGRANT_OLD_ENV_USERDOMAIN="EUROPE"
INFO global: VAGRANT_OLD_ENV_USERNAME="HigginbottomM"
INFO global: VAGRANT_OLD_ENV_USERPROFILE="C:\\Users\\higginbottomm"
INFO global: VAGRANT_OLD_ENV_VBOX_MSI_INSTALL_PATH="C:\\Program Files\\Oracle\\VirtualBox\\"
INFO global: VAGRANT_OLD_ENV_windir="C:\\windows"
INFO global: VAGRANT_OLD_ENV_windows_tracing_flags="3"
INFO global: VAGRANT_OLD_ENV_windows_tracing_logfile="C:\\BVTBin\\Tests\\installpackage\\csilogfile.log"
INFO global: Plugins:
INFO global: - bundler = 1.10.6
INFO global: - i18n = 0.7.0
INFO global: - log4r = 1.1.10
INFO global: - micromachine = 1.1.0
INFO global: - mime-types = 1.25.1
INFO global: - rest-client = 1.6.9
INFO global: - vagrant-share = 1.1.5
INFO global: - vagrant-vbguest = 0.11.0
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/box/plugin.rb
INFO manager: Registered plugin: box command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/cap/plugin.rb
INFO manager: Registered plugin: cap command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/destroy/plugin.rb
INFO manager: Registered plugin: destroy command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/global-status/plugin.rb
INFO manager: Registered plugin: global-status command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/halt/plugin.rb
INFO manager: Registered plugin: halt command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/help/plugin.rb
INFO manager: Registered plugin: help command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/init/plugin.rb
INFO manager: Registered plugin: init command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/list-commands/plugin.rb
INFO manager: Registered plugin: list-commands command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/login/plugin.rb
INFO manager: Registered plugin: vagrant-login
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/package/plugin.rb
INFO manager: Registered plugin: package command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/plugin/plugin.rb
INFO manager: Registered plugin: plugin command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/port/plugin.rb
INFO manager: Registered plugin: port command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/powershell/plugin.rb
INFO manager: Registered plugin: powershell command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/provider/plugin.rb
INFO manager: Registered plugin: provider command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/provision/plugin.rb
INFO manager: Registered plugin: provision command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/push/plugin.rb
INFO manager: Registered plugin: push command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/rdp/plugin.rb
INFO manager: Registered plugin: rdp command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/reload/plugin.rb
INFO manager: Registered plugin: reload command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/resume/plugin.rb
INFO manager: Registered plugin: resume command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/snapshot/plugin.rb
INFO manager: Registered plugin: snapshot command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/ssh/plugin.rb
INFO manager: Registered plugin: ssh command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/ssh_config/plugin.rb
INFO manager: Registered plugin: ssh-config command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/status/plugin.rb
INFO manager: Registered plugin: status command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/suspend/plugin.rb
INFO manager: Registered plugin: suspend command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/up/plugin.rb
INFO manager: Registered plugin: up command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/commands/version/plugin.rb
INFO manager: Registered plugin: version command
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/communicators/ssh/plugin.rb
INFO manager: Registered plugin: ssh communicator
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/communicators/winrm/plugin.rb
INFO manager: Registered plugin: winrm communicator
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/arch/plugin.rb
INFO manager: Registered plugin: Arch guest
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/atomic/plugin.rb
INFO manager: Registered plugin: Atomic Host guest
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/coreos/plugin.rb
INFO manager: Registered plugin: CoreOS guest
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/darwin/plugin.rb
INFO manager: Registered plugin: Darwin guest
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/debian/plugin.rb
INFO manager: Registered plugin: Debian guest
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/esxi/plugin.rb
INFO manager: Registered plugin: ESXi guest.
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/fedora/plugin.rb
INFO manager: Registered plugin: Fedora guest
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/freebsd/plugin.rb
INFO manager: Registered plugin: FreeBSD guest
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/funtoo/plugin.rb
INFO manager: Registered plugin: Funtoo guest
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/gentoo/plugin.rb
INFO manager: Registered plugin: Gentoo guest
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/linux/plugin.rb
INFO manager: Registered plugin: Linux guest.
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/mint/plugin.rb
INFO manager: Registered plugin: Mint guest
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/netbsd/plugin.rb
INFO manager: Registered plugin: NetBSD guest
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/nixos/plugin.rb
INFO manager: Registered plugin: NixOS guest
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/omnios/plugin.rb
INFO manager: Registered plugin: OmniOS guest.
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/openbsd/plugin.rb
INFO manager: Registered plugin: OpenBSD guest
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/photon/plugin.rb
INFO manager: Registered plugin: VMware Photon guest
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/pld/plugin.rb
INFO manager: Registered plugin: PLD Linux guest
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/redhat/plugin.rb
INFO manager: Registered plugin: Red Hat Enterprise Linux guest
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/slackware/plugin.rb
INFO manager: Registered plugin: Slackware guest
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/smartos/plugin.rb
INFO manager: Registered plugin: SmartOS guest.
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/solaris/plugin.rb
INFO manager: Registered plugin: Solaris guest.
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/solaris11/plugin.rb
INFO manager: Registered plugin: Solaris 11 guest.
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/suse/plugin.rb
INFO manager: Registered plugin: SUSE guest
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/tinycore/plugin.rb
INFO manager: Registered plugin: TinyCore Linux guest.
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/ubuntu/plugin.rb
INFO manager: Registered plugin: Ubuntu guest
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/guests/windows/plugin.rb
INFO manager: Registered plugin: Windows guest.
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/hosts/arch/plugin.rb
INFO manager: Registered plugin: Arch host
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/hosts/bsd/plugin.rb
INFO manager: Registered plugin: BSD host
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/hosts/darwin/plugin.rb
INFO manager: Registered plugin: Mac OS X host
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/hosts/freebsd/plugin.rb
INFO manager: Registered plugin: FreeBSD host
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/hosts/gentoo/plugin.rb
INFO manager: Registered plugin: Gentoo host
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/hosts/linux/plugin.rb
INFO manager: Registered plugin: Linux host
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/hosts/null/plugin.rb
INFO manager: Registered plugin: null host
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/hosts/redhat/plugin.rb
INFO manager: Registered plugin: Red Hat Enterprise Linux host
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/hosts/slackware/plugin.rb
INFO manager: Registered plugin: Slackware host
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/hosts/suse/plugin.rb
INFO manager: Registered plugin: SUSE host
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/hosts/windows/plugin.rb
INFO manager: Registered plugin: Windows host
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/kernel_v1/plugin.rb
INFO manager: Registered plugin: kernel
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/kernel_v2/plugin.rb
INFO manager: Registered plugin: kernel
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/providers/docker/plugin.rb
INFO manager: Registered plugin: docker-provider
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/providers/hyperv/plugin.rb
INFO manager: Registered plugin: Hyper-V provider
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/providers/virtualbox/plugin.rb
INFO manager: Registered plugin: VirtualBox provider
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/provisioners/ansible/plugin.rb
INFO manager: Registered plugin: ansible
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/provisioners/cfengine/plugin.rb
INFO manager: Registered plugin: CFEngine Provisioner
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/provisioners/chef/plugin.rb
INFO manager: Registered plugin: chef
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/provisioners/docker/plugin.rb
INFO manager: Registered plugin: docker
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/provisioners/file/plugin.rb
INFO manager: Registered plugin: file
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/provisioners/puppet/plugin.rb
INFO manager: Registered plugin: puppet
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/provisioners/salt/plugin.rb
INFO manager: Registered plugin: salt
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/provisioners/shell/plugin.rb
INFO manager: Registered plugin: shell
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/pushes/atlas/plugin.rb
INFO manager: Registered plugin: atlas
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/pushes/ftp/plugin.rb
INFO manager: Registered plugin: ftp
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/pushes/heroku/plugin.rb
INFO manager: Registered plugin: heroku
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/pushes/local-exec/plugin.rb
INFO manager: Registered plugin: local-exec
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/pushes/noop/plugin.rb
INFO manager: Registered plugin: noop
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/synced_folders/nfs/plugin.rb
INFO manager: Registered plugin: NFS synced folders
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/synced_folders/rsync/plugin.rb
INFO manager: Registered plugin: RSync synced folders
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/synced_folders/smb/plugin.rb
INFO manager: Registered plugin: SMB synced folders
INFO global: Loading plugins!
INFO manager: Registered plugin: vagrant-share
INFO manager: Registered plugin: vagrant-vbguest
INFO vagrant: `vagrant` invoked: ["up", "--no-parallel", "--debug"]
DEBUG vagrant: Creating Vagrant environment
INFO environment: Environment initialized (#<Vagrant::Environment:0x475c428>)
INFO environment: - cwd: C:/dev/vagrant/workspace/SpringMVCHibernate/vagrant-centos-mysql-tomcat
INFO environment: Home path: C:/Users/higginbottomm/.vagrant.d
INFO environment: Local data path: C:/dev/vagrant/workspace/SpringMVCHibernate/vagrant-centos-mysql-tomcat/.vagrant
DEBUG environment: Creating: C:/dev/vagrant/workspace/SpringMVCHibernate/vagrant-centos-mysql-tomcat/.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:0x4957e00>
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:0x4729c38>
INFO cli: CLI: [] "up" ["--no-parallel"]
DEBUG cli: Invoking command class: VagrantPlugins::CommandUp::Command ["--no-parallel"]
DEBUG command: 'Up' each target VM...
INFO loader: Set :root = ["#<Pathname:C:/dev/vagrant/workspace/SpringMVCHibernate/vagrant-centos-mysql-tomcat/Vagrantfile>"]
DEBUG loader: Populating proc cache for #<Pathname:C:/dev/vagrant/workspace/SpringMVCHibernate/vagrant-centos-mysql-tomcat/Vagrantfile>
DEBUG loader: Load procs for pathname: C:/dev/vagrant/workspace/SpringMVCHibernate/vagrant-centos-mysql-tomcat/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
INFO host: Autodetecting host type for [#<Vagrant::Environment: C:/dev/vagrant/workspace/SpringMVCHibernate/vagrant-centos-mysql-tomcat>]
DEBUG host: Trying: arch
DEBUG host: Trying: darwin
DEBUG host: Trying: freebsd
DEBUG host: Trying: gentoo
DEBUG host: Trying: redhat
DEBUG host: Trying: slackware
DEBUG host: Trying: suse
DEBUG host: Trying: bsd
DEBUG host: Trying: linux
DEBUG host: Trying: null
DEBUG host: Trying: windows
INFO host: Detected: windows!
DEBUG host: Searching for cap: provider_install_docker
DEBUG host: Checking in: windows
DEBUG command: Getting target VMs for command. Arguments:
DEBUG command: -- names: ["postgres"]
DEBUG command: -- options: {:provider=>nil}
DEBUG command: Finding machine that match name: postgres
INFO environment: Getting machine: postgres (docker)
INFO environment: Uncached load of machine.
INFO loader: Set "22556652_machine_postgres" = ["[\"2\", #<Proc:0x489b220@C:/dev/vagrant/workspace/SpringMVCHibernate/vagrant-centos-mysql-tomcat/Vagrantfile:18>]"]
DEBUG loader: Populating proc cache for ["2", #<Proc:0x489b220@C:/dev/vagrant/workspace/SpringMVCHibernate/vagrant-centos-mysql-tomcat/Vagrantfile:18>]
INFO loader: Loading configuration in order: [:home, :root, "22556652_machine_postgres"]
DEBUG loader: Loading from: root (cache)
DEBUG loader: Loading from: 22556652_machine_postgres (evaluating)
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG push: finalizing
INFO machine: Initializing machine: postgres
INFO machine: - Provider: VagrantPlugins::DockerProvider::Provider
INFO machine: - Box:
INFO machine: - Data dir: C:/dev/vagrant/workspace/SpringMVCHibernate/vagrant-centos-mysql-tomcat/.vagrant/machines/postgres/docker
INFO machine: New machine ID: nil
INFO interface: Machine: metadata ["provider", :docker, {:target=>:postgres}]
INFO command: With machine: postgres (#<VagrantPlugins::DockerProvider::Provider:0x48b5260 @logger=#<Log4r::Logger:0x48b51e8 @fullname="vagrant::provider::docker", @outputters=[], @additive=true, @name="docker", @path="vagrant::provider", @parent=#<Log4r::Logger:0x495f348 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x48c87f0 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x48c8790>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x48b68e0 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x495f270 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @machine=#<Vagrant::Machine: postgres (VagrantPlugins::DockerProvider::Provider)>, @cap_logger=#<Log4r::Logger:0x4826058 @fullname="vagrant::capability_host::vagrantplugins::dockerprovider::provider", @outputters=[], @additive=true, @name="provider", @path="vagrant::capability_host::vagrantplugins::dockerprovider", @parent=#<Log4r::Logger:0x495f348 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x48c87f0 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x48c8790>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x48b68e0 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x495f270 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @cap_host_chain=[[:docker, #<#<Class:0x4826b68>:0x47b4778>]], @cap_args=[#<Vagrant::Machine: postgres (VagrantPlugins::DockerProvider::Provider)>], @cap_caps={:docker=>#<Vagrant::Registry:0x48269a0 @items={:public_address=>#<Proc:0x43c8ed0@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/providers/docker/plugin.rb:54>, :proxy_machine=>#<Proc:0x43c8de0@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/providers/docker/plugin.rb:59>}, @results_cache={}>, :hyperv=>#<Vagrant::Registry:0x48268c8 @items={:public_address=>#<Proc:0x43c1358@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/providers/hyperv/plugin.rb:25>}, @results_cache={}>, :virtualbox=>#<Vagrant::Registry:0x4826808 @items={:forwarded_ports=>#<Proc:0x30fa998@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/providers/virtualbox/plugin.rb:27>, :nic_mac_addresses=>#<Proc:0x30fa788@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/providers/virtualbox/plugin.rb:32>, :public_address=>#<Proc:0x2d29298@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-share-1.1.5/lib/vagrant-share.rb:39>, :snapshot_list=>#<Proc:0x30fa710@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/providers/virtualbox/plugin.rb:42>}, @results_cache={}>}>)
INFO interface: info: Bringing machine 'postgres' up with 'docker' provider...
Bringing machine 'postgres' up with 'docker' provider...
INFO batch_action: Batch action will parallelize: false
INFO batch_action: Starting action: #<Vagrant::Machine:0x49d2668> up {:destroy_on_error=>true, :install_provider=>true, :parallel=>false, :provision_ignore_sentinel=>false, :provision_types=>nil}
INFO machine: Calling action: up on provider Docker (new container)
DEBUG environment: Attempting to acquire process-lock: machine-action-c7cccc2d14381c959ced4d0898757534
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-c7cccc2d14381c959ced4d0898757534
INFO interface: Machine: action ["up", "start", {:target=>:postgres}]
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 2 hooks defined.
INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x302f7d8>
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x29cf118>
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 2 hooks defined.
INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x48cb940>
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::IsState:0x48be158>
DEBUG is_state: Checking if machine state is 'not_created'
DEBUG is_state: -- Machine state: not_created
INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::IsState:0x48be158>
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 2 hooks defined.
INFO runner: Running action: machine_action_up #<Vagrant::Action::Warden:0x4793e50>
INFO warden: Calling IN action: #<Proc:0x45617e8@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::HandleBox:0x4793c40>
INFO handle_box: Skipping HandleBox because no box is set
INFO warden: Calling IN action: #<Proc:0x471a440@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::ConfigValidate:0x29ceb78>
INFO warden: Calling IN action: #<VagrantPlugins::DockerProvider::Action::HostMachine:0x29cea28>
INFO interface: output: Docker host is required. One will be created if necessary...
INFO interface: output: ==> postgres: Docker host is required. One will be created if necessary...
==> postgres: Docker host is required. One will be created if necessary...
INFO environment: Environment initialized (#<Vagrant::Environment:0x4407540>)
INFO environment: - cwd: C:/dev/vagrant/workspace/SpringMVCHibernate/vagrant-centos-mysql-tomcat/host
INFO environment: Home path: C:/Users/higginbottomm/.vagrant.d
INFO environment: Local data path: C:/dev/vagrant/workspace/SpringMVCHibernate/vagrant-centos-mysql-tomcat/host/.vagrant
DEBUG environment: Creating: C:/dev/vagrant/workspace/SpringMVCHibernate/vagrant-centos-mysql-tomcat/host/.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:0x29b4e80>
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:0x493dbb0>
INFO loader: Set :root = ["#<Pathname:C:/dev/vagrant/workspace/SpringMVCHibernate/vagrant-centos-mysql-tomcat/host/Vagrantfile>"]
DEBUG loader: Populating proc cache for #<Pathname:C:/dev/vagrant/workspace/SpringMVCHibernate/vagrant-centos-mysql-tomcat/host/Vagrantfile>
DEBUG loader: Load procs for pathname: C:/dev/vagrant/workspace/SpringMVCHibernate/vagrant-centos-mysql-tomcat/host/Vagrantfile
INFO loader: Loading configuration in order: [:home, :root]
DEBUG loader: Loading from: root (evaluating)
DEBUG provisioner: Provisioner defined:
DEBUG provisioner: Provisioner defined: clear-ssh
DEBUG provisioner: Provisioner defined: info
DEBUG provisioner: Provisioner defined:
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG push: finalizing
DEBUG base: Windows, checking for VBoxManage on PATH first
DEBUG base: Windows. Trying VBOX_INSTALL_PATH for VBoxManage
DEBUG base: VBOX_INSTALL_PATH value: C:\Program Files\Oracle\VirtualBox\
INFO subprocess: Starting process: ["C:\\cygwin64\\bin/cygpath.EXE", "-w", "-l", "-a", "C:/Program Files/Oracle/VirtualBox/VBoxManage.exe"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: C:\Program Files\Oracle\VirtualBox\VBoxManage.exe
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO base: VBoxManage path: C:/Program Files/Oracle/VirtualBox/VBoxManage.exe
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "--version"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 5.0.22r108108
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG meta: Finding driver for VirtualBox version: 5.0.22
INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_5_0
DEBUG base: Windows, checking for VBoxManage on PATH first
DEBUG base: Windows. Trying VBOX_INSTALL_PATH for VBoxManage
DEBUG base: VBOX_INSTALL_PATH value: C:\Program Files\Oracle\VirtualBox\
INFO subprocess: Starting process: ["C:\\cygwin64\\bin/cygpath.EXE", "-w", "-l", "-a", "C:/Program Files/Oracle/VirtualBox/VBoxManage.exe"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: C:\Program Files\Oracle\VirtualBox\VBoxManage.exe
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO base: VBoxManage path: C:/Program Files/Oracle/VirtualBox/VBoxManage.exe
INFO environment: Getting machine: dockerhost (virtualbox)
INFO environment: Uncached load of machine.
DEBUG base: Windows, checking for VBoxManage on PATH first
DEBUG base: Windows. Trying VBOX_INSTALL_PATH for VBoxManage
DEBUG base: VBOX_INSTALL_PATH value: C:\Program Files\Oracle\VirtualBox\
INFO subprocess: Starting process: ["C:\\cygwin64\\bin/cygpath.EXE", "-w", "-l", "-a", "C:/Program Files/Oracle/VirtualBox/VBoxManage.exe"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: C:\Program Files\Oracle\VirtualBox\VBoxManage.exe
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
INFO base: VBoxManage path: C:/Program Files/Oracle/VirtualBox/VBoxManage.exe
DEBUG meta: Finding driver for VirtualBox version: 5.0.22
INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_5_0
DEBUG base: Windows, checking for VBoxManage on PATH first
DEBUG base: Windows. Trying VBOX_INSTALL_PATH for VBoxManage
DEBUG base: VBOX_INSTALL_PATH value: C:\Program Files\Oracle\VirtualBox\
INFO subprocess: Starting process: ["C:\\cygwin64\\bin/cygpath.EXE", "-w", "-l", "-a", "C:/Program Files/Oracle/VirtualBox/VBoxManage.exe"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: C:\Program Files\Oracle\VirtualBox\VBoxManage.exe
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO base: VBoxManage path: C:/Program Files/Oracle/VirtualBox/VBoxManage.exe
INFO loader: Set "37704420_machine_dockerhost" = []
INFO loader: Loading configuration in order: [:home, :root, "37704420_machine_dockerhost"]
DEBUG loader: Loading from: root (cache)
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG push: finalizing
INFO box_collection: Box found: bento/centos-7.2 (virtualbox)
INFO environment: Running hook: authenticate_box_url
INFO host: Autodetecting host type for [#<Vagrant::Environment: C:/dev/vagrant/workspace/SpringMVCHibernate/vagrant-centos-mysql-tomcat/host>]
DEBUG host: Trying: arch
DEBUG host: Trying: darwin
DEBUG host: Trying: freebsd
DEBUG host: Trying: gentoo
DEBUG host: Trying: redhat
DEBUG host: Trying: slackware
DEBUG host: Trying: suse
DEBUG host: Trying: bsd
DEBUG host: Trying: linux
DEBUG host: Trying: null
DEBUG host: Trying: windows
INFO host: Detected: windows!
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 3 hooks defined.
INFO runner: Running action: authenticate_box_url #<Vagrant::Action::Builder:0x5600ad8>
INFO warden: Calling IN action: #<VagrantPlugins::LoginCommand::AddAuthentication:0x52b3918>
DEBUG client: No authentication token in environment or C:/Users/higginbottomm/.vagrant.d/data/vagrant_login_token
INFO warden: Calling OUT action: #<VagrantPlugins::LoginCommand::AddAuthentication:0x52b3918>
INFO loader: Set :"43752012_bento/centos-7.2_virtualbox" = ["#<Pathname:C:/Users/higginbottomm/.vagrant.d/boxes/bento-VAGRANTSLASH-centos-7.2/2.2.7/virtualbox/Vagrantfile>"]
DEBUG loader: Populating proc cache for #<Pathname:C:/Users/higginbottomm/.vagrant.d/boxes/bento-VAGRANTSLASH-centos-7.2/2.2.7/virtualbox/Vagrantfile>
DEBUG loader: Load procs for pathname: C:/Users/higginbottomm/.vagrant.d/boxes/bento-VAGRANTSLASH-centos-7.2/2.2.7/virtualbox/Vagrantfile
INFO loader: Loading configuration in order: [:"43752012_bento/centos-7.2_virtualbox", :home, :root, "37704420_machine_dockerhost"]
DEBUG loader: Loading from: 43752012_bento/centos-7.2_virtualbox (evaluating)
DEBUG loader: Loading from: root (cache)
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG push: finalizing
INFO machine: Initializing machine: dockerhost
INFO machine: - Provider: VagrantPlugins::ProviderVirtualBox::Provider
INFO machine: - Box: #<Vagrant::Box:0x51ecf40>
INFO machine: - Data dir: C:/dev/vagrant/workspace/SpringMVCHibernate/vagrant-centos-mysql-tomcat/host/.vagrant/machines/dockerhost/virtualbox
DEBUG virtualbox: Instantiating the driver for machine ID: nil
DEBUG base: Windows, checking for VBoxManage on PATH first
DEBUG base: Windows. Trying VBOX_INSTALL_PATH for VBoxManage
DEBUG base: VBOX_INSTALL_PATH value: C:\Program Files\Oracle\VirtualBox\
INFO subprocess: Starting process: ["C:\\cygwin64\\bin/cygpath.EXE", "-w", "-l", "-a", "C:/Program Files/Oracle/VirtualBox/VBoxManage.exe"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: C:\Program Files\Oracle\VirtualBox\VBoxManage.exe
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO base: VBoxManage path: C:/Program Files/Oracle/VirtualBox/VBoxManage.exe
DEBUG meta: Finding driver for VirtualBox version: 5.0.22
INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_5_0
DEBUG base: Windows, checking for VBoxManage on PATH first
DEBUG base: Windows. Trying VBOX_INSTALL_PATH for VBoxManage
DEBUG base: VBOX_INSTALL_PATH value: C:\Program Files\Oracle\VirtualBox\
INFO subprocess: Starting process: ["C:\\cygwin64\\bin/cygpath.EXE", "-w", "-l", "-a", "C:/Program Files/Oracle/VirtualBox/VBoxManage.exe"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: C:\Program Files\Oracle\VirtualBox\VBoxManage.exe
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO base: VBoxManage path: C:/Program Files/Oracle/VirtualBox/VBoxManage.exe
INFO machine: New machine ID: nil
DEBUG virtualbox: Instantiating the driver for machine ID: nil
DEBUG base: Windows, checking for VBoxManage on PATH first
DEBUG base: Windows. Trying VBOX_INSTALL_PATH for VBoxManage
DEBUG base: VBOX_INSTALL_PATH value: C:\Program Files\Oracle\VirtualBox\
INFO subprocess: Starting process: ["C:\\cygwin64\\bin/cygpath.EXE", "-w", "-l", "-a", "C:/Program Files/Oracle/VirtualBox/VBoxManage.exe"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: C:\Program Files\Oracle\VirtualBox\VBoxManage.exe
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO base: VBoxManage path: C:/Program Files/Oracle/VirtualBox/VBoxManage.exe
DEBUG meta: Finding driver for VirtualBox version: 5.0.22
INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_5_0
DEBUG base: Windows, checking for VBoxManage on PATH first
DEBUG base: Windows. Trying VBOX_INSTALL_PATH for VBoxManage
DEBUG base: VBOX_INSTALL_PATH value: C:\Program Files\Oracle\VirtualBox\
INFO subprocess: Starting process: ["C:\\cygwin64\\bin/cygpath.EXE", "-w", "-l", "-a", "C:/Program Files/Oracle/VirtualBox/VBoxManage.exe"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: C:\Program Files\Oracle\VirtualBox\VBoxManage.exe
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO base: VBoxManage path: C:/Program Files/Oracle/VirtualBox/VBoxManage.exe
INFO interface: Machine: metadata ["provider", :virtualbox, {:target=>:dockerhost}]
DEBUG environment: Attempting to acquire process-lock: d99e413f5794e16d86976a7615137a85
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: d99e413f5794e16d86976a7615137a85
DEBUG ssh: Checking whether SSH is ready...
INFO ssh: SSH not up: #<Vagrant::Errors::SSHNotReady: The provider for this Vagrant-managed machine is reporting that it
is not yet ready for SSH. Depending on your provider this can carry
different meanings. Make sure your machine is created and running and
try again. Additionally, check the output of `vagrant status` to verify
that the machine is in the state that you expect. If you continue to
get this error message, please view the documentation for the provider
you're using.>
INFO interface: detail: Vagrant will now create or start a local VM to act as the Docker
host. You'll see the output of the `vagrant up` for this VM below.
INFO interface: detail: postgres: Vagrant will now create or start a local VM to act as the Docker
postgres: host. You'll see the output of the `vagrant up` for this VM below.
 postgres: Vagrant will now create or start a local VM to act as the Docker
postgres: host. You'll see the output of the `vagrant up` for this VM below.
INFO interface: detail:
INFO interface: detail: postgres:
 postgres: 
INFO machine: Calling action: up on provider VirtualBox (new VM)
DEBUG environment: Attempting to acquire process-lock: machine-action-0aa86a4f03d35d67fd7c0ab0d5559427
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-0aa86a4f03d35d67fd7c0ab0d5559427
INFO interface: Machine: action ["up", "start", {:target=>:dockerhost}]
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 2 hooks defined.
INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x2fdf4c8>
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::CheckVirtualbox:0x565cef0>
DEBUG base: Windows, checking for VBoxManage on PATH first
DEBUG base: Windows. Trying VBOX_INSTALL_PATH for VBoxManage
DEBUG base: VBOX_INSTALL_PATH value: C:\Program Files\Oracle\VirtualBox\
INFO subprocess: Starting process: ["C:\\cygwin64\\bin/cygpath.EXE", "-w", "-l", "-a", "C:/Program Files/Oracle/VirtualBox/VBoxManage.exe"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: C:\Program Files\Oracle\VirtualBox\VBoxManage.exe
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO base: VBoxManage path: C:/Program Files/Oracle/VirtualBox/VBoxManage.exe
DEBUG meta: Finding driver for VirtualBox version: 5.0.22
INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_5_0
DEBUG base: Windows, checking for VBoxManage on PATH first
DEBUG base: Windows. Trying VBOX_INSTALL_PATH for VBoxManage
DEBUG base: VBOX_INSTALL_PATH value: C:\Program Files\Oracle\VirtualBox\
INFO subprocess: Starting process: ["C:\\cygwin64\\bin/cygpath.EXE", "-w", "-l", "-a", "C:/Program Files/Oracle/VirtualBox/VBoxManage.exe"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: C:\Program Files\Oracle\VirtualBox\VBoxManage.exe
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO base: VBoxManage path: C:/Program Files/Oracle/VirtualBox/VBoxManage.exe
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "list", "hostonlyifs"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Name: VirtualBox Host-Only Ethernet Adapter
GUID: 72a8c085-28a1-490f-8e80-b9a6d1e97a3d
DHCP: Disabled
IPAddress: 192.168.56.1
NetworkMask: 255.255.255.0
IPV6Address: fe80:0000:0000:0000:14cf:46eb:d0d3:abe6
IPV6NetworkMaskPrefixLength: 64
HardwareAddress: 0a:00:27:00:00:2d
MediumType: Ethernet
Status: Up
VBoxNetworkName: HostInterfaceNetworking-VirtualBox Host-Only Ethernet Adapter
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x565ced8>
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 2 hooks defined.
INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x5114688>
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::Created:0x50f61c0>
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::Created:0x50f61c0>
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 2 hooks defined.
INFO runner: Running action: machine_action_up #<Vagrant::Action::Warden:0x49a7018>
INFO warden: Calling IN action: #<Proc:0x47c9e98@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::HandleBox:0x49a6fd0>
INFO handle_box: Machine already has box. HandleBox will not run.
INFO warden: Calling IN action: #<Proc:0x48caff8@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::ConfigValidate:0x565ce90>
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x565ce48>
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 2 hooks defined.
INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x442bb10>
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::Created:0x4414b90>
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::Created:0x4414b90>
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 2 hooks defined.
INFO runner: Running action: machine_action_up #<Vagrant::Action::Warden:0x2aa6d58>
INFO warden: Calling IN action: #<Proc:0x5418ca8@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::CheckAccessible:0x2aa6bf0>
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::Customize:0x2aa6ba8>
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::PrepareClone:0x2aa6b90>
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::PrepareCloneSnapshot:0x55da210>
INFO prepare_clone: no clone master, not preparing clone snapshot
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::Import:0x5506b00>
INFO interface: info: Importing base box 'bento/centos-7.2'...
INFO interface: info: dockerhost: Importing base box 'bento/centos-7.2'...
 dockerhost: Importing base box 'bento/centos-7.2'...
INFO subprocess: Starting process: ["C:\\cygwin64\\bin/cygpath.EXE", "-w", "-l", "-a", "C:/Users/higginbottomm/.vagrant.d/boxes/bento-VAGRANTSLASH-centos-7.2/2.2.7/virtualbox/box.ovf"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: C:\Users\higginbottomm\.vagrant.d\boxes\bento-VAGRANTSLASH-centos-7.2\2.2.7\virtualbox\box.ovf
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: Doing dry-run import to determine parallel-safe name...
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "import", "-n", "C:\\Users\\higginbottomm\\.vagrant.d\\boxes\\bento-VAGRANTSLASH-centos-7.2\\2.2.7\\virtualbox\\box.ovf"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stderr: 0%...10%...20%...30%...40%...50%...60%...70%...80%...90%...100%
Interpreting C:\Users\higginbottomm\.vagrant.d\boxes\bento-VAGRANTSLASH-centos-7.2\2.2.7\virtualbox\box.ovf...
OK.
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG subprocess: stdout: Disks:
vmdisk1 42949672960 -1 http://www.vmware.com/interfaces/specifications/vmdk.html#streamOptimized centos-7.2-x86_64-disk1.vmdk -1 -1
Virtual system 0:
0: Suggested OS type: "RedHat_64"
(change with "--vsys 0 --ostype <type>"; use "list ostypes" to list all possible values)
1: Suggested VM name "centos-7.2-x86_64"
(change with "--vsys 0 --vmname <name>")
2: Number of CPUs: 1
(change with "--vsys 0 --cpus <n>")
3: Guest memory: 512 MB
(change with "--vsys 0 --memory <MB>")
4: Network adapter: orig NAT, config 3, extra slot=0;type=NAT
5: IDE controller, type PIIX4
(disable with "--vsys 0 --unit 5 --ignore")
6: IDE controller, type PIIX4
(disable with "--vsys 0 --unit 6 --ignore")
7: SATA controller, type AHCI
(disable with "--vsys 0 --unit 7 --ignore")
8: Hard disk image: source image=centos-7.2-x86_64-disk1.vmdk, target path=c:\Virtual Box Machines\centos-7.2-x86_64\centos-7.2-x86_64-disk1.vmdk, controller=7;channel=0
(change target path with "--vsys 0 --unit 8 --disk path";
disable with "--vsys 0 --unit 8 --ignore")
DEBUG virtualbox_5_0: -- Parallel safe name: centos-7.2-x86_64_1466714692202_90419
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "import", "C:\\Users\\higginbottomm\\.vagrant.d\\boxes\\bento-VAGRANTSLASH-centos-7.2\\2.2.7\\virtualbox\\box.ovf", "--vsys", "0", "--vmname", "centos-7.2-x86_64_1466714692202_90419", "--vsys", "0", "--unit", "8", "--disk", "c:\\Virtual Box Machines\\centos-7.2-x86_64_1466714692202_90419\\centos-7.2-x86_64-disk1.vmdk"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stderr: 0%...10%...20%...30%...40%...50%...60%...70%...80%...90%...100%
Interpreting C:\Users\higginbottomm\.vagrant.d\boxes\bento-VAGRANTSLASH-centos-7.2\2.2.7\virtualbox\box.ovf...
OK.
0%...
DEBUG subprocess: stderr: 10%...20%...30%...40%...50%...
INFO interface: info:


 INFO interface: info: Progress: 50%
Progress: 50%DEBUG subprocess: stderr: 60%...70%...
INFO interface: info:


 INFO interface: info: Progress: 70%
Progress: 70%DEBUG subprocess: stderr: 80%...90%...
INFO interface: info:


 INFO interface: info: Progress: 90%
Progress: 90%DEBUG subprocess: stderr: 100%
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31980
DEBUG subprocess: Exit status: 0
DEBUG subprocess: stdout: Disks:
vmdisk1 42949672960 -1 http://www.vmware.com/interfaces/specifications/vmdk.html#streamOptimized centos-7.2-x86_64-disk1.vmdk -1 -1
Virtual system 0:
0: Suggested OS type: "RedHat_64"
(change with "--vsys 0 --ostype <type>"; use "list ostypes" to list all possible values)
1: VM name specified with --vmname: "centos-7.2-x86_64_1466714692202_90419"
2: Number of CPUs: 1
(change with "--vsys 0 --cpus <n>")
3: Guest memory: 512 MB
(change with "--vsys 0 --memory <MB>")
4: Network adapter: orig NAT, config 3, extra slot=0;type=NAT
5: IDE controller, type PIIX4
(disable with "--vsys 0 --unit 5 --ignore")
6: IDE controller, type PIIX4
(disable with "--vsys 0 --unit 6 --ignore")
7: SATA controller, type AHCI
(disable with "--vsys 0 --unit 7 --ignore")
8: Hard disk image: source image=centos-7.2-x86_64-disk1.vmdk, target path=c:\Virtual Box Machines\centos-7.2-x86_64_1466714692202_90419\centos-7.2-x86_64-disk1.vmdk, controller=7;channel=0
Successfully imported the appliance.
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "list", "vms"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: "<inaccessible>" {c12c51b4-0c31-4265-b7ea-432e356665bf}
"<inaccessible>" {73535b85-80c4-40eb-a654-40992f721f24}
"<inaccessible>" {c9f8e624-06cc-4ef3-b36d-1538414b0810}
"<inaccessible>" {70920484-bd55-420a-aac5-a1c251753c4c}
"<inaccessible>" {c8e94cd9-b1ed-41ba-b4dd-0eccf5459620}
"<inaccessible>" {57196553-565b-436d-86a9-74f617569a1b}
"<inaccessible>" {97330788-beef-40a8-8f11-e6b180b79e74}
"<inaccessible>" {c2abc7b3-4446-453f-96cc-b0717060fae3}
"<inaccessible>" {4249cbcd-59b9-42ad-a69f-cddc6983b102}
"Cloud1" {60b7fba5-5945-47f9-a4c1-07e80941d348}
"OpenStack HOL" {a70df147-87e8-41b7-b647-f41a625d8972}
"<inaccessible>" {f8b018f6-71d4-4fe0-b492-f4f42b6b85b6}
"<inaccessible>" {fdcd3ab7-b237-4e2b-823d-5fd62c2f70eb}
"<inaccessible>" {48231b57-a405-43f9-b79a-c277bf252553}
"<inaccessible>" {d292d692-7a5f-40ee-83ed-83eb64837b61}
"<inaccessible>" {d26eb7e5-83a0-42f3-b061-9012fd07900c}
"<inaccessible>" {245f288b-2cd4-4253-bd45-db5355a51cd0}
"centos-7.2-x86_64_1466714692202_90419" {32a60af2-1934-453d-abf6-c237fc93843a}
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO machine: New machine ID: "32a60af2-1934-453d-abf6-c237fc93843a"
DEBUG virtualbox: Instantiating the driver for machine ID: "32a60af2-1934-453d-abf6-c237fc93843a"
DEBUG base: Windows, checking for VBoxManage on PATH first
DEBUG base: Windows. Trying VBOX_INSTALL_PATH for VBoxManage
DEBUG base: VBOX_INSTALL_PATH value: C:\Program Files\Oracle\VirtualBox\
INFO subprocess: Starting process: ["C:\\cygwin64\\bin/cygpath.EXE", "-w", "-l", "-a", "C:/Program Files/Oracle/VirtualBox/VBoxManage.exe"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: C:\Program Files\Oracle\VirtualBox\VBoxManage.exe
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO base: VBoxManage path: C:/Program Files/Oracle/VirtualBox/VBoxManage.exe
DEBUG meta: Finding driver for VirtualBox version: 5.0.22
INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_5_0
DEBUG base: Windows, checking for VBoxManage on PATH first
DEBUG base: Windows. Trying VBOX_INSTALL_PATH for VBoxManage
DEBUG base: VBOX_INSTALL_PATH value: C:\Program Files\Oracle\VirtualBox\
INFO subprocess: Starting process: ["C:\\cygwin64\\bin/cygpath.EXE", "-w", "-l", "-a", "C:/Program Files/Oracle/VirtualBox/VBoxManage.exe"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: C:\Program Files\Oracle\VirtualBox\VBoxManage.exe
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO base: VBoxManage path: C:/Program Files/Oracle/VirtualBox/VBoxManage.exe
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Name: centos-7.2-x86_64_1466714692202_90419
Groups: /
Guest OS: Red Hat (64-bit)
UUID: 32a60af2-1934-453d-abf6-c237fc93843a
Config file: c:\Virtual Box Machines\centos-7.2-x86_64_1466714692202_90419\centos-7.2-x86_64_1466714692202_90419.vbox
Snapshot folder: c:\Virtual Box Machines\centos-7.2-x86_64_1466714692202_90419\Snapshots
Log folder: c:\Virtual Box Machines\centos-7.2-x86_64_1466714692202_90419\Logs
Hardware UUID: 32a60af2-1934-453d-abf6-c237fc93843a
Memory size: 512MB
Page Fusion: off
VRAM size: 8MB
CPU exec cap: 100%
HPET: off
Chipset: piix3
Firmware: BIOS
Number of CPUs: 1
PAE: on
Long Mode: on
CPUID Portability Level: 0
CPUID overrides: None
Boot menu mode: message and menu
Boot Device (1): HardDisk
Boot Device (2): DVD
Boot Device (3): Not Assigned
Boot Device (4): Not Assigned
ACPI: on
IOAPIC: on
Time offset: 0ms
RTC: local time
Hardw. virt.ext: on
Nested Paging: on
Large Pages: off
VT-x VPID: on
VT-x unr. exec.: on
Paravirt. Provider: Default
State: powered off (since 2016-05-21T20:09:34.000000000)
Monitor count: 1
3D Acceleration: off
2D Video Acceleration: off
Teleporter Enabled: off
Teleporter Port: 0
Teleporter Address:
Teleporter Password:
Tracing Enabled: off
Allow Tracing to Access VM: off
Tracing Configuration:
Autostart Enabled: off
Autostart Delay: 0
Default Frontend:
Storage Controller Name (0): IDE Controller
Storage Controller Type (0): PIIX4
Storage Controller Instance Number (0): 0
Storage Controller Max Port Count (0): 2
Storage Controller Port Count (0): 2
Storage Controller Bootable (0): on
Storage Controller Name (1): SATA Controller
Storage Controller Type (1): IntelAhci
Storage Controller Instance Number (1): 0
Storage Controller Max Port Count (1): 30
Storage Controller Port Count (1): 1
Storage Controller Bootable (1): on
SATA Controller (0, 0): c:\Virtual Box Machines\centos-7.2-x86_64_1466714692202_90419\centos-7.2-x86_64-disk1.vmdk (UUID: fa195b53-49b2-4ced-9e69-d4ece400a9da)
NIC 1: MAC: 0800278BCB44, Attachment: NAT, Cable connected: on, Trace: off (file: none), Type: 82540EM, Reported speed: 0 Mbps, Boot priority: 0, Promisc Policy: deny, Bandwidth group: none
NIC 1 Settings: MTU: 0, Socket (send: 64, receive: 64), TCP Window (send:64, receive: 64)
NIC 2: disabled
NIC 3: disabled
NIC 4: disabled
NIC 5: disabled
NIC 6: disabled
NIC 7: disabled
NIC 8: disabled
Pointing Device: PS/2 Mouse
Keyboard Device: PS/2 Keyboard
UART 1: disabled
UART 2: disabled
UART 3: disabled
UART 4: disabled
LPT 1: disabled
LPT 2: disabled
Audio: disabled
Clipboard Mode: disabled
Drag and drop Mode: disabled
VRDE: enabled (Address 127.0.0.1, Ports 5940, MultiConn: off, ReuseSingleConn: off, Authentication type: null)
Video redirection: disabled
VRDE property: TCP/Ports = "5940"
VRDE property: TCP/Address = "127.0.0.1"
VRDE property: VideoChannel/Enabled = <not set>
VRDE property: VideoChannel/Quality = <not set>
VRDE property: VideoChannel/DownscaleProtection = <not set>
VRDE property: Client/DisableDisplay = <not set>
VRDE property: Client/DisableInput = <not set>
VRDE property: Client/DisableAudio = <not set>
VRDE property: Client/DisableUSB = <not set>
VRDE property: Client/DisableClipboard = <not set>
VRDE property: Client/DisableUpstreamAudio = <not set>
VRDE property: Client/DisableRDPDR = <not set>
VRDE property: H3DRedirect/Enabled = <not set>
VRDE property: Security/Method = <not set>
VRDE property: Security/ServerCertificate = <not set>
VRDE property: Security/ServerPrivateKey = <not set>
VRDE property: Security/CACertificate = <not set>
VRDE property: Audio/RateCorrectionMode = <not set>
VRDE property: Audio/LogPath = <not set>
USB: disabled
EHCI: disabled
XHCI: disabled
USB Device Filters:
<none>
Bandwidth groups: <none>
Shared folders: <none>
Video capturing: not active
Capture screens: 0
Capture file: c:\Virtual Box Machines\centos-7.2-x86_64_1466714692202_90419\centos-7.2-x86_64_1466714692202_90419.webm
Capture dimensions: 1024x768
Capture rate: 512 kbps
Capture FPS: 25
Guest:
Configured memory balloon size: 0 MB
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO interface: info:


 INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::DiscardState:0x5506ad0>
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="centos-7.2-x86_64_1466714692202_90419"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\centos-7.2-x86_64_1466714692202_90419\\centos-7.2-x86_64_1466714692202_90419.vbox"
SnapFldr="c:\\Virtual Box Machines\\centos-7.2-x86_64_1466714692202_90419\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\centos-7.2-x86_64_1466714692202_90419\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="off"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="poweroff"
VMStateChangeTime="2016-05-21T20:09:34.000000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\centos-7.2-x86_64_1466714692202_90419\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="0800278BCB44"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
vrde="on"
vrdeport=-1
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\centos-7.2-x86_64_1466714692202_90419\centos-7.2-x86_64_1466714692202_90419.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::MatchMACAddress:0x5506ab8>
INFO interface: info: Matching MAC address for NAT networking...
INFO interface: info: dockerhost: Matching MAC address for NAT networking...
 dockerhost: Matching MAC address for NAT networking...
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "modifyvm", "32a60af2-1934-453d-abf6-c237fc93843a", "--macaddress1", "080027E27E5E"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO warden: Calling IN action: #<Proc:0x5506a88@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::CheckVirtualbox:0x565cda0>
DEBUG base: Windows, checking for VBoxManage on PATH first
DEBUG base: Windows. Trying VBOX_INSTALL_PATH for VBoxManage
DEBUG base: VBOX_INSTALL_PATH value: C:\Program Files\Oracle\VirtualBox\
INFO subprocess: Starting process: ["C:\\cygwin64\\bin/cygpath.EXE", "-w", "-l", "-a", "C:/Program Files/Oracle/VirtualBox/VBoxManage.exe"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: C:\Program Files\Oracle\VirtualBox\VBoxManage.exe
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO base: VBoxManage path: C:/Program Files/Oracle/VirtualBox/VBoxManage.exe
DEBUG meta: Finding driver for VirtualBox version: 5.0.22
INFO meta: Using VirtualBox driver: VagrantPlugins::ProviderVirtualBox::Driver::Version_5_0
DEBUG base: Windows, checking for VBoxManage on PATH first
DEBUG base: Windows. Trying VBOX_INSTALL_PATH for VBoxManage
DEBUG base: VBOX_INSTALL_PATH value: C:\Program Files\Oracle\VirtualBox\
INFO subprocess: Starting process: ["C:\\cygwin64\\bin/cygpath.EXE", "-w", "-l", "-a", "C:/Program Files/Oracle/VirtualBox/VBoxManage.exe"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: C:\Program Files\Oracle\VirtualBox\VBoxManage.exe
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO base: VBoxManage path: C:/Program Files/Oracle/VirtualBox/VBoxManage.exe
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "list", "hostonlyifs"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Name: VirtualBox Host-Only Ethernet Adapter
GUID: 72a8c085-28a1-490f-8e80-b9a6d1e97a3d
DHCP: Disabled
IPAddress: 192.168.56.1
NetworkMask: 255.255.255.0
IPV6Address: fe80:0000:0000:0000:14cf:46eb:d0d3:abe6
IPV6NetworkMaskPrefixLength: 64
HardwareAddress: 0a:00:27:00:00:2d
MediumType: Ethernet
Status: Up
VBoxNetworkName: HostInterfaceNetworking-VirtualBox Host-Only Ethernet Adapter
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::ConfigValidate:0x565cd88>
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::BoxCheckOutdated:0x565cd58>
INFO interface: output: Checking if box 'bento/centos-7.2' is up to date...
INFO interface: output: dockerhost: Checking if box 'bento/centos-7.2' is up to date...
 dockerhost: Checking if box 'bento/centos-7.2' is up to date...
INFO downloader: Downloader starting download:
INFO downloader: -- Source: https://atlas.hashicorp.com/bento/centos-7.2
INFO downloader: -- Destination: C:/Users/HIGGIN~1/AppData/Local/Temp/vagrant20160623-9808-15ckmai
INFO subprocess: Starting process: ["C:\\HashiCorp\\Vagrant\\embedded\\bin/curl.EXE", "-q", "--fail", "--location", "--max-redirs", "10", "--user-agent", "Vagrant/1.8.1 (+https://www.vagrantup.com; ruby2.2.3)", "-H", "Accept: application/json", "--output", "C:/Users/HIGGIN~1/AppData/Local/Temp/vagrant20160623-9808-15ckmai", "https://atlas.hashicorp.com/bento/centos-7.2"]
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
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
DEBUG subprocess: stderr:
0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0
100 116 100 116 0 0 99 0 0:00:01 0:00:01 --:--:-- 99
100 1972 100 1972 0 0 1469 0 0:00:01 0:00:01 --:--:-- 1469
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31998
DEBUG subprocess: Exit status: 0
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x5516760>
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 2 hooks defined.
INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x50aa0f8>
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::IsRunning:0x5677908>
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="centos-7.2-x86_64_1466714692202_90419"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\centos-7.2-x86_64_1466714692202_90419\\centos-7.2-x86_64_1466714692202_90419.vbox"
SnapFldr="c:\\Virtual Box Machines\\centos-7.2-x86_64_1466714692202_90419\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\centos-7.2-x86_64_1466714692202_90419\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="off"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="poweroff"
VMStateChangeTime="2016-05-21T20:09:34.000000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\centos-7.2-x86_64_1466714692202_90419\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
vrde="on"
vrdeport=-1
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\centos-7.2-x86_64_1466714692202_90419\centos-7.2-x86_64_1466714692202_90419.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::IsRunning:0x5677908>
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 2 hooks defined.
INFO runner: Running action: machine_action_up #<Vagrant::Action::Warden:0x5410c68>
INFO warden: Calling IN action: #<Proc:0x52b3f78@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x5410bc0>
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 2 hooks defined.
INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x522d848>
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::IsSaved:0x51ee1b8>
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="centos-7.2-x86_64_1466714692202_90419"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\centos-7.2-x86_64_1466714692202_90419\\centos-7.2-x86_64_1466714692202_90419.vbox"
SnapFldr="c:\\Virtual Box Machines\\centos-7.2-x86_64_1466714692202_90419\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\centos-7.2-x86_64_1466714692202_90419\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="off"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="poweroff"
VMStateChangeTime="2016-05-21T20:09:34.000000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\centos-7.2-x86_64_1466714692202_90419\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
vrde="on"
vrdeport=-1
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\centos-7.2-x86_64_1466714692202_90419\centos-7.2-x86_64_1466714692202_90419.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::IsSaved:0x51ee1b8>
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 2 hooks defined.
INFO runner: Running action: machine_action_up #<Vagrant::Action::Warden:0x49261f8>
INFO warden: Calling IN action: #<Proc:0x481e000@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x4926198>
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 2 hooks defined.
INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x4514be0>
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::IsPaused:0x44cc610>
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="centos-7.2-x86_64_1466714692202_90419"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\centos-7.2-x86_64_1466714692202_90419\\centos-7.2-x86_64_1466714692202_90419.vbox"
SnapFldr="c:\\Virtual Box Machines\\centos-7.2-x86_64_1466714692202_90419\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\centos-7.2-x86_64_1466714692202_90419\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="off"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="poweroff"
VMStateChangeTime="2016-05-21T20:09:34.000000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\centos-7.2-x86_64_1466714692202_90419\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
vrde="on"
vrdeport=-1
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\centos-7.2-x86_64_1466714692202_90419\centos-7.2-x86_64_1466714692202_90419.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::IsPaused:0x44cc610>
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 2 hooks defined.
INFO runner: Running action: machine_action_up #<Vagrant::Action::Warden:0x56571f0>
INFO warden: Calling IN action: #<Proc:0x4785918@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::CheckAccessible:0x56571a8>
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="centos-7.2-x86_64_1466714692202_90419"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\centos-7.2-x86_64_1466714692202_90419\\centos-7.2-x86_64_1466714692202_90419.vbox"
SnapFldr="c:\\Virtual Box Machines\\centos-7.2-x86_64_1466714692202_90419\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\centos-7.2-x86_64_1466714692202_90419\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="off"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="poweroff"
VMStateChangeTime="2016-05-21T20:09:34.000000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\centos-7.2-x86_64_1466714692202_90419\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
vrde="on"
vrdeport=-1
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\centos-7.2-x86_64_1466714692202_90419\centos-7.2-x86_64_1466714692202_90419.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::CleanMachineFolder:0x5657190>
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "list", "systemproperties"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: API version: 5_0
Minimum guest RAM size: 4 Megabytes
Maximum guest RAM size: 2097152 Megabytes
Minimum video RAM size: 1 Megabytes
Maximum video RAM size: 256 Megabytes
Maximum guest monitor count: 64
Minimum guest CPU count: 1
Maximum guest CPU count: 32
Virtual disk limit (info): 2199022206976 Bytes
Maximum Serial Port count: 4
Maximum Parallel Port count: 2
Maximum Boot Position: 4
Maximum PIIX3 Network Adapter count: 8
Maximum ICH9 Network Adapter count: 36
Maximum PIIX3 IDE Controllers: 1
Maximum ICH9 IDE Controllers: 1
Maximum IDE Port count: 2
Maximum Devices per IDE Port: 2
Maximum PIIX3 SATA Controllers: 1
Maximum ICH9 SATA Controllers: 8
Maximum SATA Port count: 30
Maximum Devices per SATA Port: 1
Maximum PIIX3 SCSI Controllers: 1
Maximum ICH9 SCSI Controllers: 8
Maximum SCSI Port count: 16
Maximum Devices per SCSI Port: 1
Maximum SAS PIIX3 Controllers: 1
Maximum SAS ICH9 Controllers: 8
Maximum SAS Port count: 255
Maximum Devices per SAS Port: 1
Maximum PIIX3 Floppy Controllers:1
Maximum ICH9 Floppy Controllers: 1
Maximum Floppy Port count: 1
Maximum Devices per Floppy Port: 2
Default machine folder: c:\Virtual Box Machines
Raw-mode Supported: yes
Exclusive HW virtualization use: off
Default hard disk format: VDI
VRDE auth library: VRDPAuth
Webservice auth. library: VRDPAuth
Remote desktop ExtPack: Oracle VM VirtualBox Extension Pack
Log history count: 3
Default frontend:
Autostart database path:
Default Guest Additions ISO: C:\Program Files\Oracle\VirtualBox/VBoxGuestAdditions.iso
Logging Level: all
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::SetName:0x5657178>
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "list", "vms"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: "<inaccessible>" {c12c51b4-0c31-4265-b7ea-432e356665bf}
"<inaccessible>" {73535b85-80c4-40eb-a654-40992f721f24}
"<inaccessible>" {c9f8e624-06cc-4ef3-b36d-1538414b0810}
"<inaccessible>" {70920484-bd55-420a-aac5-a1c251753c4c}
"<inaccessible>" {c8e94cd9-b1ed-41ba-b4dd-0eccf5459620}
"<inaccessible>" {57196553-565b-436d-86a9-74f617569a1b}
"<inaccessible>" {97330788-beef-40a8-8f11-e6b180b79e74}
"<inaccessible>" {c2abc7b3-4446-453f-96cc-b0717060fae3}
"<inaccessible>" {4249cbcd-59b9-42ad-a69f-cddc6983b102}
"Cloud1" {60b7fba5-5945-47f9-a4c1-07e80941d348}
"OpenStack HOL" {a70df147-87e8-41b7-b647-f41a625d8972}
"<inaccessible>" {f8b018f6-71d4-4fe0-b492-f4f42b6b85b6}
"<inaccessible>" {fdcd3ab7-b237-4e2b-823d-5fd62c2f70eb}
"<inaccessible>" {48231b57-a405-43f9-b79a-c277bf252553}
"<inaccessible>" {d292d692-7a5f-40ee-83ed-83eb64837b61}
"<inaccessible>" {d26eb7e5-83a0-42f3-b061-9012fd07900c}
"<inaccessible>" {245f288b-2cd4-4253-bd45-db5355a51cd0}
"centos-7.2-x86_64_1466714692202_90419" {32a60af2-1934-453d-abf6-c237fc93843a}
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO interface: info: Setting the name of the VM: dockerhost
INFO interface: info: dockerhost: Setting the name of the VM: dockerhost
 dockerhost: Setting the name of the VM: dockerhost
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "modifyvm", "32a60af2-1934-453d-abf6-c237fc93843a", "--name", "dockerhost"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::ClearForwardedPorts:0x55bba78>
DEBUG virtualbox_5_0: read_forward_ports: uuid=32a60af2-1934-453d-abf6-c237fc93843a active_only=false
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="off"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="poweroff"
VMStateChangeTime="2016-05-21T20:09:34.000000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
vrde="on"
vrdeport=-1
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Provision:0x55bba60>
INFO provision: Ignoring sentinel check, forcing provision
INFO provision: Checking provisioner sentinel file...
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::EnvSet:0x554a348>
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::PrepareForwardedPortCollisionParams:0x554a330>
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "list", "vms"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: "<inaccessible>" {c12c51b4-0c31-4265-b7ea-432e356665bf}
"<inaccessible>" {73535b85-80c4-40eb-a654-40992f721f24}
"<inaccessible>" {c9f8e624-06cc-4ef3-b36d-1538414b0810}
"<inaccessible>" {70920484-bd55-420a-aac5-a1c251753c4c}
"<inaccessible>" {c8e94cd9-b1ed-41ba-b4dd-0eccf5459620}
"<inaccessible>" {57196553-565b-436d-86a9-74f617569a1b}
"<inaccessible>" {97330788-beef-40a8-8f11-e6b180b79e74}
"<inaccessible>" {c2abc7b3-4446-453f-96cc-b0717060fae3}
"<inaccessible>" {4249cbcd-59b9-42ad-a69f-cddc6983b102}
"Cloud1" {60b7fba5-5945-47f9-a4c1-07e80941d348}
"OpenStack HOL" {a70df147-87e8-41b7-b647-f41a625d8972}
"<inaccessible>" {f8b018f6-71d4-4fe0-b492-f4f42b6b85b6}
"<inaccessible>" {fdcd3ab7-b237-4e2b-823d-5fd62c2f70eb}
"<inaccessible>" {48231b57-a405-43f9-b79a-c277bf252553}
"<inaccessible>" {d292d692-7a5f-40ee-83ed-83eb64837b61}
"<inaccessible>" {d26eb7e5-83a0-42f3-b061-9012fd07900c}
"<inaccessible>" {245f288b-2cd4-4253-bd45-db5355a51cd0}
"dockerhost" {32a60af2-1934-453d-abf6-c237fc93843a}
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: read_forward_ports: uuid=c12c51b4-0c31-4265-b7ea-432e356665bf active_only=true
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "c12c51b4-0c31-4265-b7ea-432e356665bf", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="<inaccessible>"
UUID="c12c51b4-0c31-4265-b7ea-432e356665bf"
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: read_forward_ports: uuid=73535b85-80c4-40eb-a654-40992f721f24 active_only=true
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "73535b85-80c4-40eb-a654-40992f721f24", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="<inaccessible>"
UUID="73535b85-80c4-40eb-a654-40992f721f24"
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: read_forward_ports: uuid=c9f8e624-06cc-4ef3-b36d-1538414b0810 active_only=true
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "c9f8e624-06cc-4ef3-b36d-1538414b0810", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="<inaccessible>"
UUID="c9f8e624-06cc-4ef3-b36d-1538414b0810"
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: read_forward_ports: uuid=70920484-bd55-420a-aac5-a1c251753c4c active_only=true
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "70920484-bd55-420a-aac5-a1c251753c4c", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="<inaccessible>"
UUID="70920484-bd55-420a-aac5-a1c251753c4c"
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: read_forward_ports: uuid=c8e94cd9-b1ed-41ba-b4dd-0eccf5459620 active_only=true
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "c8e94cd9-b1ed-41ba-b4dd-0eccf5459620", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="<inaccessible>"
UUID="c8e94cd9-b1ed-41ba-b4dd-0eccf5459620"
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: read_forward_ports: uuid=57196553-565b-436d-86a9-74f617569a1b active_only=true
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "57196553-565b-436d-86a9-74f617569a1b", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="<inaccessible>"
UUID="57196553-565b-436d-86a9-74f617569a1b"
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: read_forward_ports: uuid=97330788-beef-40a8-8f11-e6b180b79e74 active_only=true
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "97330788-beef-40a8-8f11-e6b180b79e74", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="<inaccessible>"
UUID="97330788-beef-40a8-8f11-e6b180b79e74"
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: read_forward_ports: uuid=c2abc7b3-4446-453f-96cc-b0717060fae3 active_only=true
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "c2abc7b3-4446-453f-96cc-b0717060fae3", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="<inaccessible>"
UUID="c2abc7b3-4446-453f-96cc-b0717060fae3"
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: read_forward_ports: uuid=4249cbcd-59b9-42ad-a69f-cddc6983b102 active_only=true
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "4249cbcd-59b9-42ad-a69f-cddc6983b102", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="<inaccessible>"
UUID="4249cbcd-59b9-42ad-a69f-cddc6983b102"
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: read_forward_ports: uuid=60b7fba5-5945-47f9-a4c1-07e80941d348 active_only=true
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "60b7fba5-5945-47f9-a4c1-07e80941d348", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="Cloud1"
groups="/"
ostype="Ubuntu (64-bit)"
UUID="60b7fba5-5945-47f9-a4c1-07e80941d348"
CfgFile="c:\\Virtual Box Machines\\Cloud1\\Cloud1.vbox"
SnapFldr="c:\\Virtual Box Machines\\Cloud1\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\Cloud1\\Logs"
hardwareuuid="60b7fba5-5945-47f9-a4c1-07e80941d348"
memory=4089
pagefusion="off"
vram=12
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="off"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="dvd"
boot2="disk"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="on"
vtxvpid="on"
vtxux="on"
paravirtprovider="legacy"
VMState="poweroff"
VMStateChangeTime="2015-06-17T14:37:04.000000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE-0-0"="none"
"IDE-0-1"="none"
"IDE-1-0"="emptydrive"
"IDE-IsEjected"="off"
"IDE-1-1"="none"
"SATA-0-0"="c:\Virtual Box Machines\Cloud1\Cloud1.vdi"
"SATA-ImageUUID-0-0"="9b6ff1c5-ed1a-4521-ba0e-41f1709f5cc4"
hostonlyadapter1="VirtualBox Host-Only Ethernet Adapter"
macaddress1="0800275A9837"
cableconnected1="on"
nic1="hostonly"
nictype1="82540EM"
nicspeed1="0"
natnet2="nat"
macaddress2="080027A89F12"
cableconnected2="on"
nic2="nat"
nictype2="82540EM"
nicspeed2="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="usbtablet"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="bidirectional"
draganddrop="disabled"
vrde="off"
usb="on"
ehci="on"
xhci="off"
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\Cloud1\Cloud1.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
description="Openstack all in one
Ubuntu 14.04 server
Vitual Box guest additions installed"
GuestMemoryBalloon=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: read_forward_ports: uuid=a70df147-87e8-41b7-b647-f41a625d8972 active_only=true
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "a70df147-87e8-41b7-b647-f41a625d8972", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="OpenStack HOL"
groups="/"
ostype="Oracle (64-bit)"
UUID="a70df147-87e8-41b7-b647-f41a625d8972"
CfgFile="c:\\Virtual Box Machines\\OpenStack HOL\\OpenStack HOL.vbox"
SnapFldr="c:\\Virtual Box Machines\\OpenStack HOL\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\OpenStack HOL\\Logs"
hardwareuuid="a70df147-87e8-41b7-b647-f41a625d8972"
memory=4096
pagefusion="off"
vram=12
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=2
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="dvd"
boot2="disk"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="on"
vtxvpid="on"
vtxux="on"
paravirtprovider="legacy"
VMState="poweroff"
VMStateChangeTime="2015-07-02T10:44:18.000000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE-0-0"="none"
"IDE-0-1"="none"
"IDE-1-0"="C:\Program Files\Oracle\VirtualBox\VBoxGuestAdditions.iso"
"IDE-ImageUUID-1-0"="20d05173-f7a4-401a-862f-ff9bbac50b91"
"IDE-tempeject"="off"
"IDE-IsEjected"="off"
"IDE-1-1"="none"
"SATA-0-0"="c:\Virtual Box Machines\OpenStack HOL\OpenStack HOL-disk1.vmdk"
"SATA-ImageUUID-0-0"="71d751e3-b8c7-4992-a2fe-1afb98710a42"
hostonlyadapter1="VirtualBox Host-Only Ethernet Adapter"
macaddress1="080027A3E78A"
cableconnected1="on"
nic1="hostonly"
nictype1="82540EM"
nicspeed1="0"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="dsound"
clipboard="bidirectional"
draganddrop="disabled"
vrde="off"
usb="off"
ehci="off"
xhci="off"
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\OpenStack HOL\OpenStack HOL.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: read_forward_ports: uuid=f8b018f6-71d4-4fe0-b492-f4f42b6b85b6 active_only=true
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "f8b018f6-71d4-4fe0-b492-f4f42b6b85b6", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="<inaccessible>"
UUID="f8b018f6-71d4-4fe0-b492-f4f42b6b85b6"
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: read_forward_ports: uuid=fdcd3ab7-b237-4e2b-823d-5fd62c2f70eb active_only=true
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "fdcd3ab7-b237-4e2b-823d-5fd62c2f70eb", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="<inaccessible>"
UUID="fdcd3ab7-b237-4e2b-823d-5fd62c2f70eb"
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: read_forward_ports: uuid=48231b57-a405-43f9-b79a-c277bf252553 active_only=true
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "48231b57-a405-43f9-b79a-c277bf252553", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="<inaccessible>"
UUID="48231b57-a405-43f9-b79a-c277bf252553"
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: read_forward_ports: uuid=d292d692-7a5f-40ee-83ed-83eb64837b61 active_only=true
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "d292d692-7a5f-40ee-83ed-83eb64837b61", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="<inaccessible>"
UUID="d292d692-7a5f-40ee-83ed-83eb64837b61"
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: read_forward_ports: uuid=d26eb7e5-83a0-42f3-b061-9012fd07900c active_only=true
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "d26eb7e5-83a0-42f3-b061-9012fd07900c", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="<inaccessible>"
UUID="d26eb7e5-83a0-42f3-b061-9012fd07900c"
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: read_forward_ports: uuid=245f288b-2cd4-4253-bd45-db5355a51cd0 active_only=true
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "245f288b-2cd4-4253-bd45-db5355a51cd0", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="<inaccessible>"
UUID="245f288b-2cd4-4253-bd45-db5355a51cd0"
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: read_forward_ports: uuid=32a60af2-1934-453d-abf6-c237fc93843a active_only=false
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="off"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="poweroff"
VMStateChangeTime="2016-05-21T20:09:34.000000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
vrde="on"
vrdeport=-1
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::HandleForwardedPortCollisions:0x554a318>
DEBUG environment: Attempting to acquire process-lock: fpcollision
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: fpcollision
INFO handle_port_collisions: Detecting any forwarded port collisions...
DEBUG handle_port_collisions: Extra in use: []
DEBUG handle_port_collisions: Remap: {}
DEBUG handle_port_collisions: Repair: true
INFO environment: Released process lock: fpcollision
DEBUG environment: Attempting to acquire process-lock: dotlock
INFO environment: Acquired process lock: dotlock
INFO environment: Released process lock: dotlock
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::PrepareNFSValidIds:0x54e5ab8>
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "list", "vms"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: "<inaccessible>" {c12c51b4-0c31-4265-b7ea-432e356665bf}
"<inaccessible>" {73535b85-80c4-40eb-a654-40992f721f24}
"<inaccessible>" {c9f8e624-06cc-4ef3-b36d-1538414b0810}
"<inaccessible>" {70920484-bd55-420a-aac5-a1c251753c4c}
"<inaccessible>" {c8e94cd9-b1ed-41ba-b4dd-0eccf5459620}
"<inaccessible>" {57196553-565b-436d-86a9-74f617569a1b}
"<inaccessible>" {97330788-beef-40a8-8f11-e6b180b79e74}
"<inaccessible>" {c2abc7b3-4446-453f-96cc-b0717060fae3}
"<inaccessible>" {4249cbcd-59b9-42ad-a69f-cddc6983b102}
"Cloud1" {60b7fba5-5945-47f9-a4c1-07e80941d348}
"OpenStack HOL" {a70df147-87e8-41b7-b647-f41a625d8972}
"<inaccessible>" {f8b018f6-71d4-4fe0-b492-f4f42b6b85b6}
"<inaccessible>" {fdcd3ab7-b237-4e2b-823d-5fd62c2f70eb}
"<inaccessible>" {48231b57-a405-43f9-b79a-c277bf252553}
"<inaccessible>" {d292d692-7a5f-40ee-83ed-83eb64837b61}
"<inaccessible>" {d26eb7e5-83a0-42f3-b061-9012fd07900c}
"<inaccessible>" {245f288b-2cd4-4253-bd45-db5355a51cd0}
"dockerhost" {32a60af2-1934-453d-abf6-c237fc93843a}
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
INFO warden: Calling IN action: #<VagrantPlugins::SyncedFolderNFS::ActionCleanup:0x5413368>
DEBUG host: Searching for cap: nfs_prune
DEBUG host: Checking in: windows
INFO nfs: Host doesn't support pruning NFS. Skipping.
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::SyncedFolderCleanup:0x52bb8b0>
INFO synced_folder_cleanup: Invoking synced folder cleanup for: virtualbox
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="off"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="poweroff"
VMStateChangeTime="2016-05-21T20:09:34.000000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
vrde="on"
vrdeport=-1
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::SyncedFolders:0x527d0c0>
INFO synced_folders: SyncedFolders loading from cache: false
INFO synced_folders: Synced Folder Implementation: virtualbox
INFO synced_folders: - /home/vagrant/workspace/shared-data/mysql: C:/dev/vagrant/workspace/SpringMVCHibernate/shared-data/mysql => /home/vagrant/workspace/shared-data/mysql
INFO synced_folders: - /home/vagrant/workspace/shared-data/postgres/data: C:/dev/vagrant/workspace/SpringMVCHibernate/shared-data/postgres/data => /home/vagrant/workspace/shared-data/postgres/data
INFO synced_folders: - /home/vagrant/workspace/shared-data/tomcat: C:/dev/vagrant/workspace/SpringMVCHibernate/shared-data/tomcat => /home/vagrant/workspace/shared-data/tomcat
INFO synced_folders: - /home/vagrant/workspace/shared-data/jenkins: C:/dev/vagrant/workspace/SpringMVCHibernate/shared-data/jenkins => /home/vagrant/workspace/shared-data/jenkins
INFO synced_folders: - /vagrant: . => /vagrant
INFO synced_folders: Invoking synced folder prepare for: virtualbox
INFO subprocess: Starting process: ["C:\\cygwin64\\bin/cygpath.EXE", "-w", "-l", "-a", "C:/dev/vagrant/workspace/SpringMVCHibernate/shared-data/mysql"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["C:\\cygwin64\\bin/cygpath.EXE", "-w", "-l", "-a", "C:/dev/vagrant/workspace/SpringMVCHibernate/shared-data/postgres/data"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["C:\\cygwin64\\bin/cygpath.EXE", "-w", "-l", "-a", "C:/dev/vagrant/workspace/SpringMVCHibernate/shared-data/tomcat"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["C:\\cygwin64\\bin/cygpath.EXE", "-w", "-l", "-a", "C:/dev/vagrant/workspace/SpringMVCHibernate/shared-data/jenkins"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["C:\\cygwin64\\bin/cygpath.EXE", "-w", "-l", "-a", "C:/dev/vagrant/workspace/SpringMVCHibernate/vagrant-centos-mysql-tomcat/host"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "setextradata", "32a60af2-1934-453d-abf6-c237fc93843a", "VBoxInternal2/SharedFoldersEnableSymlinksCreate/home_vagrant_workspace_shared-data_mysql", "1"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "sharedfolder", "add", "32a60af2-1934-453d-abf6-c237fc93843a", "--name", "home_vagrant_workspace_shared-data_mysql", "--hostpath", "\\\\?\\C:\\dev\\vagrant\\workspace\\SpringMVCHibernate\\shared-data\\mysql"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "setextradata", "32a60af2-1934-453d-abf6-c237fc93843a", "VBoxInternal2/SharedFoldersEnableSymlinksCreate/home_vagrant_workspace_shared-data_postgres_data", "1"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "sharedfolder", "add", "32a60af2-1934-453d-abf6-c237fc93843a", "--name", "home_vagrant_workspace_shared-data_postgres_data", "--hostpath", "\\\\?\\C:\\dev\\vagrant\\workspace\\SpringMVCHibernate\\shared-data\\postgres\\data"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "setextradata", "32a60af2-1934-453d-abf6-c237fc93843a", "VBoxInternal2/SharedFoldersEnableSymlinksCreate/home_vagrant_workspace_shared-data_tomcat", "1"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "sharedfolder", "add", "32a60af2-1934-453d-abf6-c237fc93843a", "--name", "home_vagrant_workspace_shared-data_tomcat", "--hostpath", "\\\\?\\C:\\dev\\vagrant\\workspace\\SpringMVCHibernate\\shared-data\\tomcat"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "setextradata", "32a60af2-1934-453d-abf6-c237fc93843a", "VBoxInternal2/SharedFoldersEnableSymlinksCreate/home_vagrant_workspace_shared-data_jenkins", "1"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "sharedfolder", "add", "32a60af2-1934-453d-abf6-c237fc93843a", "--name", "home_vagrant_workspace_shared-data_jenkins", "--hostpath", "\\\\?\\C:\\dev\\vagrant\\workspace\\SpringMVCHibernate\\shared-data\\jenkins"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "setextradata", "32a60af2-1934-453d-abf6-c237fc93843a", "VBoxInternal2/SharedFoldersEnableSymlinksCreate/vagrant", "1"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "sharedfolder", "add", "32a60af2-1934-453d-abf6-c237fc93843a", "--name", "vagrant", "--hostpath", "\\\\?\\C:\\dev\\vagrant\\workspace\\SpringMVCHibernate\\vagrant-centos-mysql-tomcat\\host"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::PrepareNFSSettings:0x522eb38>
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::ClearNetworkInterfaces:0x51b3778>
INFO interface: info: Clearing any previously set network interfaces...
INFO interface: info: dockerhost: Clearing any previously set network interfaces...
 dockerhost: Clearing any previously set network interfaces...
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "modifyvm", "32a60af2-1934-453d-abf6-c237fc93843a", "--nic2", "none", "--nic3", "none", "--nic4", "none", "--nic5", "none", "--nic6", "none", "--nic7", "none", "--nic8", "none"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::Network:0x51b3748>
DEBUG network: Available slots for high-level adapters: #<Set: {2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36}>
INFO network: Determining network adapters required for high-level configuration...
INFO network: Determining adapters and compiling network configuration...
INFO network: Network slot 1. Type: nat.
DEBUG network: Normalized configuration: {:auto_config=>false, :adapter=>1}
DEBUG network: Adapter configuration: {:adapter=>1, :type=>:nat}
INFO network: Enabling adapters...
INFO interface: output: Preparing network interfaces based on configuration...
INFO interface: output: dockerhost: Preparing network interfaces based on configuration...
 dockerhost: Preparing network interfaces based on configuration...
INFO interface: detail: Adapter 1: nat
INFO interface: detail: dockerhost: Adapter 1: nat
 dockerhost: Adapter 1: nat
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "modifyvm", "32a60af2-1934-453d-abf6-c237fc93843a", "--nic1", "nat"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::NetworkFixIPv6:0x5167ec0>
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::ForwardPorts:0x50c2c20>
INFO interface: output: Forwarding ports...
INFO interface: output: dockerhost: Forwarding ports...
 dockerhost: Forwarding ports...
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="off"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="poweroff"
VMStateChangeTime="2016-05-21T20:09:34.000000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
vrde="on"
vrdeport=-1
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO interface: detail: 8080 (guest) => 8080 (host) (adapter 1)
INFO interface: detail: dockerhost: 8080 (guest) => 8080 (host) (adapter 1)
 dockerhost: 8080 (guest) => 8080 (host) (adapter 1)
INFO interface: detail: 8000 (guest) => 8000 (host) (adapter 1)
INFO interface: detail: dockerhost: 8000 (guest) => 8000 (host) (adapter 1)
 dockerhost: 8000 (guest) => 8000 (host) (adapter 1)
INFO interface: detail: 3306 (guest) => 3306 (host) (adapter 1)
INFO interface: detail: dockerhost: 3306 (guest) => 3306 (host) (adapter 1)
 dockerhost: 3306 (guest) => 3306 (host) (adapter 1)
INFO interface: detail: 5432 (guest) => 5432 (host) (adapter 1)
INFO interface: detail: dockerhost: 5432 (guest) => 5432 (host) (adapter 1)
 dockerhost: 5432 (guest) => 5432 (host) (adapter 1)
INFO interface: detail: 9080 (guest) => 9080 (host) (adapter 1)
INFO interface: detail: dockerhost: 9080 (guest) => 9080 (host) (adapter 1)
 dockerhost: 9080 (guest) => 9080 (host) (adapter 1)
INFO interface: detail: 50000 (guest) => 50000 (host) (adapter 1)
INFO interface: detail: dockerhost: 50000 (guest) => 50000 (host) (adapter 1)
 dockerhost: 50000 (guest) => 50000 (host) (adapter 1)
INFO interface: detail: 22 (guest) => 2222 (host) (adapter 1)
INFO interface: detail: dockerhost: 22 (guest) => 2222 (host) (adapter 1)
 dockerhost: 22 (guest) => 2222 (host) (adapter 1)
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "modifyvm", "32a60af2-1934-453d-abf6-c237fc93843a", "--natpf1", "tcp8080,tcp,,8080,,8080", "--natpf1", "tcp8000,tcp,,8000,,8000", "--natpf1", "tcp3306,tcp,,3306,,3306", "--natpf1", "tcp5432,tcp,,5432,,5432", "--natpf1", "tcp9080,tcp,,9080,,9080", "--natpf1", "tcp50000,tcp,,50000,,50000", "--natpf1", "ssh,tcp,127.0.0.1,2222,,22"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::SetHostname:0x50c2c08>
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::SaneDefaults:0x50c2bf0>
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "modifyvm", "32a60af2-1934-453d-abf6-c237fc93843a", "--rtcuseutc", "on"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO sanedefaults: Automatically figuring out whether to enable/disable NAT DNS proxy...
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "modifyvm", "32a60af2-1934-453d-abf6-c237fc93843a", "--natdnsproxy1", "on"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::Customize:0x4987938>
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::Boot:0x4987908>
INFO interface: info: Booting VM...
INFO interface: info: dockerhost: Booting VM...
 dockerhost: Booting VM...
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "startvm", "32a60af2-1934-453d-abf6-c237fc93843a", "--type", "headless"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Waiting for VM "32a60af2-1934-453d-abf6-c237fc93843a" to power on...
VM "32a60af2-1934-453d-abf6-c237fc93843a" has been successfully started.
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31997
DEBUG subprocess: Exit status: 0
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::Customize:0x49878f0>
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::WaitForCommunicator:0x49878c0>
INFO interface: output: Waiting for machine to boot. This may take a few minutes...
INFO interface: output: dockerhost: Waiting for machine to boot. This may take a few minutes...
 dockerhost: Waiting for machine to boot. This may take a few minutes...
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="640,480,32"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="RedHat_64"
GuestAdditionsRunLevel=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: Searching for SSH port: 22
DEBUG virtualbox_5_0: read_forward_ports: uuid=32a60af2-1934-453d-abf6-c237fc93843a active_only=false
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="640,480,32"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="RedHat_64"
GuestAdditionsRunLevel=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="640,480,32"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="RedHat_64"
GuestAdditionsRunLevel=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: - [1, "ssh", 2222, 22]
DEBUG virtualbox_5_0: - [1, "tcp3306", 3306, 3306]
DEBUG virtualbox_5_0: - [1, "tcp50000", 50000, 50000]
DEBUG virtualbox_5_0: - [1, "tcp5432", 5432, 5432]
DEBUG virtualbox_5_0: - [1, "tcp8000", 8000, 8000]
DEBUG virtualbox_5_0: - [1, "tcp8080", 8080, 8080]
DEBUG virtualbox_5_0: - [1, "tcp9080", 9080, 9080]
INFO interface: detail: SSH address: 127.0.0.1:2222
INFO interface: detail: dockerhost: SSH address: 127.0.0.1:2222
 dockerhost: SSH address: 127.0.0.1:2222
INFO interface: detail: SSH username: vagrant
INFO interface: detail: dockerhost: SSH username: vagrant
 dockerhost: SSH username: vagrant
INFO interface: detail: SSH auth method: private key
INFO interface: detail: dockerhost: SSH auth method: private key
 dockerhost: SSH auth method: private key
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="640,480,32"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="RedHat_64"
GuestAdditionsRunLevel=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: Searching for SSH port: 22
DEBUG virtualbox_5_0: read_forward_ports: uuid=32a60af2-1934-453d-abf6-c237fc93843a active_only=false
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="640,480,32"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="RedHat_64"
GuestAdditionsRunLevel=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: - [1, "ssh", 2222, 22]
DEBUG virtualbox_5_0: - [1, "tcp3306", 3306, 3306]
DEBUG virtualbox_5_0: - [1, "tcp50000", 50000, 50000]
DEBUG virtualbox_5_0: - [1, "tcp5432", 5432, 5432]
DEBUG virtualbox_5_0: - [1, "tcp8000", 8000, 8000]
DEBUG virtualbox_5_0: - [1, "tcp8080", 8080, 8080]
DEBUG virtualbox_5_0: - [1, "tcp9080", 9080, 9080]
INFO ssh: Attempting SSH connection...
INFO ssh: Attempting to connect to SSH...
INFO ssh: - Host: 127.0.0.1
INFO ssh: - Port: 2222
INFO ssh: - Username: vagrant
INFO ssh: - Password? false
INFO ssh: - Key Path: ["C:/Users/higginbottomm/.vagrant.d/insecure_private_key"]
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="640,480,32"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="RedHat_64"
GuestAdditionsRunLevel=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="RedHat_64"
GuestAdditionsRunLevel=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="RedHat_64"
GuestAdditionsRunLevel=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="RedHat_64"
GuestAdditionsRunLevel=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="RedHat_64"
GuestAdditionsRunLevel=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="RedHat_64"
GuestAdditionsRunLevel=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="RedHat_64"
GuestAdditionsRunLevel=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="RedHat_64"
GuestAdditionsRunLevel=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="RedHat_64"
GuestAdditionsRunLevel=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="RedHat_64"
GuestAdditionsRunLevel=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="RedHat_64"
GuestAdditionsRunLevel=0
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=1
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG ssh: == Net-SSH connection debug-level log START ==
DEBUG ssh: D, [2016-06-23T21:45:38.667369 #9808] DEBUG -- net.ssh.transport.session[22c5ee8]: establishing connection to 127.0.0.1:2222
D, [2016-06-23T21:45:38.668369 #9808] DEBUG -- net.ssh.transport.session[22c5ee8]: connection established
I, [2016-06-23T21:45:38.668369 #9808] INFO -- net.ssh.transport.server_version[22c4e38]: negotiating protocol version
DEBUG ssh: == Net-SSH connection debug-level log END ==
INFO ssh: SSH not ready: #<Vagrant::Errors::NetSSHException: An error occurred in the underlying SSH library that Vagrant uses.
The error message is shown below. In many cases, errors from this
library are caused by ssh-agent issues. Try disabling your SSH
agent or removing some keys and try again.
If the problem persists, please report a bug to the net-ssh project.
timeout during server version negotiating>
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=1
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: Searching for SSH port: 22
DEBUG virtualbox_5_0: read_forward_ports: uuid=32a60af2-1934-453d-abf6-c237fc93843a active_only=false
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=1
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=1
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: - [1, "ssh", 2222, 22]
DEBUG virtualbox_5_0: - [1, "tcp3306", 3306, 3306]
DEBUG virtualbox_5_0: - [1, "tcp50000", 50000, 50000]
DEBUG virtualbox_5_0: - [1, "tcp5432", 5432, 5432]
DEBUG virtualbox_5_0: - [1, "tcp8000", 8000, 8000]
DEBUG virtualbox_5_0: - [1, "tcp8080", 8080, 8080]
DEBUG virtualbox_5_0: - [1, "tcp9080", 9080, 9080]
INFO ssh: Attempting SSH connection...
INFO ssh: Attempting to connect to SSH...
INFO ssh: - Host: 127.0.0.1
INFO ssh: - Port: 2222
INFO ssh: - Username: vagrant
INFO ssh: - Password? false
INFO ssh: - Key Path: ["C:/Users/higginbottomm/.vagrant.d/insecure_private_key"]
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=1
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=1
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=1
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=1
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG ssh: == Net-SSH connection debug-level log START ==
DEBUG ssh: D, [2016-06-23T21:45:54.170869 #9808] DEBUG -- net.ssh.transport.session[29d5b50]: establishing connection to 127.0.0.1:2222
D, [2016-06-23T21:45:54.171369 #9808] DEBUG -- net.ssh.transport.session[29d5b50]: connection established
I, [2016-06-23T21:45:54.171369 #9808] INFO -- net.ssh.transport.server_version[29d50e8]: negotiating protocol version
DEBUG ssh: == Net-SSH connection debug-level log END ==
INFO ssh: SSH not ready: #<Vagrant::Errors::SSHDisconnected: The SSH connection was unexpectedly closed by the remote end. This
usually indicates that SSH within the guest machine was unable to
properly start up. Please boot the VM in GUI mode to check whether
it is booting properly.>
INFO interface: detail: Warning: Remote connection disconnect. Retrying...
INFO interface: detail: dockerhost: Warning: Remote connection disconnect. Retrying...
 dockerhost: Warning: Remote connection disconnect. Retrying...
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: Searching for SSH port: 22
DEBUG virtualbox_5_0: read_forward_ports: uuid=32a60af2-1934-453d-abf6-c237fc93843a active_only=false
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: - [1, "ssh", 2222, 22]
DEBUG virtualbox_5_0: - [1, "tcp3306", 3306, 3306]
DEBUG virtualbox_5_0: - [1, "tcp50000", 50000, 50000]
DEBUG virtualbox_5_0: - [1, "tcp5432", 5432, 5432]
DEBUG virtualbox_5_0: - [1, "tcp8000", 8000, 8000]
DEBUG virtualbox_5_0: - [1, "tcp8080", 8080, 8080]
DEBUG virtualbox_5_0: - [1, "tcp9080", 9080, 9080]
INFO ssh: Attempting SSH connection...
INFO ssh: Attempting to connect to SSH...
INFO ssh: - Host: 127.0.0.1
INFO ssh: - Port: 2222
INFO ssh: - Username: vagrant
INFO ssh: - Password? false
INFO ssh: - Key Path: ["C:/Users/higginbottomm/.vagrant.d/insecure_private_key"]
DEBUG ssh: == Net-SSH connection debug-level log START ==
DEBUG ssh: D, [2016-06-23T21:46:01.126369 #9808] DEBUG -- net.ssh.transport.session[297a26c]: establishing connection to 127.0.0.1:2222
D, [2016-06-23T21:46:01.126869 #9808] DEBUG -- net.ssh.transport.session[297a26c]: connection established
I, [2016-06-23T21:46:01.126869 #9808] INFO -- net.ssh.transport.server_version[297525c]: negotiating protocol version
DEBUG ssh: == Net-SSH connection debug-level log END ==
INFO ssh: SSH not ready: #<Vagrant::Errors::SSHDisconnected: The SSH connection was unexpectedly closed by the remote end. This
usually indicates that SSH within the guest machine was unable to
properly start up. Please boot the VM in GUI mode to check whether
it is booting properly.>
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: Searching for SSH port: 22
DEBUG virtualbox_5_0: read_forward_ports: uuid=32a60af2-1934-453d-abf6-c237fc93843a active_only=false
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: - [1, "ssh", 2222, 22]
DEBUG virtualbox_5_0: - [1, "tcp3306", 3306, 3306]
DEBUG virtualbox_5_0: - [1, "tcp50000", 50000, 50000]
DEBUG virtualbox_5_0: - [1, "tcp5432", 5432, 5432]
DEBUG virtualbox_5_0: - [1, "tcp8000", 8000, 8000]
DEBUG virtualbox_5_0: - [1, "tcp8080", 8080, 8080]
DEBUG virtualbox_5_0: - [1, "tcp9080", 9080, 9080]
INFO ssh: Attempting SSH connection...
INFO ssh: Attempting to connect to SSH...
INFO ssh: - Host: 127.0.0.1
INFO ssh: - Port: 2222
INFO ssh: - Username: vagrant
INFO ssh: - Password? false
INFO ssh: - Key Path: ["C:/Users/higginbottomm/.vagrant.d/insecure_private_key"]
DEBUG ssh: == Net-SSH connection debug-level log START ==
DEBUG ssh: D, [2016-06-23T21:46:01.497869 #9808] DEBUG -- net.ssh.transport.session[28d47b0]: establishing connection to 127.0.0.1:2222
D, [2016-06-23T21:46:01.498369 #9808] DEBUG -- net.ssh.transport.session[28d47b0]: connection established
I, [2016-06-23T21:46:01.498369 #9808] INFO -- net.ssh.transport.server_version[28d40a8]: negotiating protocol version
DEBUG ssh: == Net-SSH connection debug-level log END ==
INFO ssh: SSH not ready: #<Vagrant::Errors::SSHDisconnected: The SSH connection was unexpectedly closed by the remote end. This
usually indicates that SSH within the guest machine was unable to
properly start up. Please boot the VM in GUI mode to check whether
it is booting properly.>
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: Searching for SSH port: 22
DEBUG virtualbox_5_0: read_forward_ports: uuid=32a60af2-1934-453d-abf6-c237fc93843a active_only=false
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: - [1, "ssh", 2222, 22]
DEBUG virtualbox_5_0: - [1, "tcp3306", 3306, 3306]
DEBUG virtualbox_5_0: - [1, "tcp50000", 50000, 50000]
DEBUG virtualbox_5_0: - [1, "tcp5432", 5432, 5432]
DEBUG virtualbox_5_0: - [1, "tcp8000", 8000, 8000]
DEBUG virtualbox_5_0: - [1, "tcp8080", 8080, 8080]
DEBUG virtualbox_5_0: - [1, "tcp9080", 9080, 9080]
INFO ssh: Attempting SSH connection...
INFO ssh: Attempting to connect to SSH...
INFO ssh: - Host: 127.0.0.1
INFO ssh: - Port: 2222
INFO ssh: - Username: vagrant
INFO ssh: - Password? false
INFO ssh: - Key Path: ["C:/Users/higginbottomm/.vagrant.d/insecure_private_key"]
DEBUG ssh: == Net-SSH connection debug-level log START ==
DEBUG ssh: D, [2016-06-23T21:46:01.894869 #9808] DEBUG -- net.ssh.transport.session[183eebc]: establishing connection to 127.0.0.1:2222
D, [2016-06-23T21:46:01.895369 #9808] DEBUG -- net.ssh.transport.session[183eebc]: connection established
I, [2016-06-23T21:46:01.895369 #9808] INFO -- net.ssh.transport.server_version[1839870]: negotiating protocol version
DEBUG ssh: == Net-SSH connection debug-level log END ==
INFO ssh: SSH not ready: #<Vagrant::Errors::SSHDisconnected: The SSH connection was unexpectedly closed by the remote end. This
usually indicates that SSH within the guest machine was unable to
properly start up. Please boot the VM in GUI mode to check whether
it is booting properly.>
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: Searching for SSH port: 22
DEBUG virtualbox_5_0: read_forward_ports: uuid=32a60af2-1934-453d-abf6-c237fc93843a active_only=false
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: - [1, "ssh", 2222, 22]
DEBUG virtualbox_5_0: - [1, "tcp3306", 3306, 3306]
DEBUG virtualbox_5_0: - [1, "tcp50000", 50000, 50000]
DEBUG virtualbox_5_0: - [1, "tcp5432", 5432, 5432]
DEBUG virtualbox_5_0: - [1, "tcp8000", 8000, 8000]
DEBUG virtualbox_5_0: - [1, "tcp8080", 8080, 8080]
DEBUG virtualbox_5_0: - [1, "tcp9080", 9080, 9080]
INFO ssh: Attempting SSH connection...
INFO ssh: Attempting to connect to SSH...
INFO ssh: - Host: 127.0.0.1
INFO ssh: - Port: 2222
INFO ssh: - Username: vagrant
INFO ssh: - Password? false
INFO ssh: - Key Path: ["C:/Users/higginbottomm/.vagrant.d/insecure_private_key"]
DEBUG ssh: == Net-SSH connection debug-level log START ==
DEBUG ssh: D, [2016-06-23T21:46:02.283369 #9808] DEBUG -- net.ssh.transport.session[286e390]: establishing connection to 127.0.0.1:2222
D, [2016-06-23T21:46:02.284369 #9808] DEBUG -- net.ssh.transport.session[286e390]: connection established
I, [2016-06-23T21:46:02.284369 #9808] INFO -- net.ssh.transport.server_version[285da58]: negotiating protocol version
DEBUG ssh: == Net-SSH connection debug-level log END ==
INFO ssh: SSH not ready: #<Vagrant::Errors::SSHDisconnected: The SSH connection was unexpectedly closed by the remote end. This
usually indicates that SSH within the guest machine was unable to
properly start up. Please boot the VM in GUI mode to check whether
it is booting properly.>
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: Searching for SSH port: 22
DEBUG virtualbox_5_0: read_forward_ports: uuid=32a60af2-1934-453d-abf6-c237fc93843a active_only=false
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: - [1, "ssh", 2222, 22]
DEBUG virtualbox_5_0: - [1, "tcp3306", 3306, 3306]
DEBUG virtualbox_5_0: - [1, "tcp50000", 50000, 50000]
DEBUG virtualbox_5_0: - [1, "tcp5432", 5432, 5432]
DEBUG virtualbox_5_0: - [1, "tcp8000", 8000, 8000]
DEBUG virtualbox_5_0: - [1, "tcp8080", 8080, 8080]
DEBUG virtualbox_5_0: - [1, "tcp9080", 9080, 9080]
INFO ssh: Attempting SSH connection...
INFO ssh: Attempting to connect to SSH...
INFO ssh: - Host: 127.0.0.1
INFO ssh: - Port: 2222
INFO ssh: - Username: vagrant
INFO ssh: - Password? false
INFO ssh: - Key Path: ["C:/Users/higginbottomm/.vagrant.d/insecure_private_key"]
DEBUG ssh: == Net-SSH connection debug-level log START ==
DEBUG ssh: D, [2016-06-23T21:46:02.699369 #9808] DEBUG -- net.ssh.transport.session[287ae10]: establishing connection to 127.0.0.1:2222
D, [2016-06-23T21:46:02.699869 #9808] DEBUG -- net.ssh.transport.session[287ae10]: connection established
I, [2016-06-23T21:46:02.699869 #9808] INFO -- net.ssh.transport.server_version[287a678]: negotiating protocol version
D, [2016-06-23T21:46:02.809869 #9808] DEBUG -- net.ssh.transport.server_version[287a678]: remote is `SSH-2.0-OpenSSH_6.6.1'
D, [2016-06-23T21:46:02.809869 #9808] DEBUG -- net.ssh.transport.server_version[287a678]: local is `SSH-2.0-Ruby/Net::SSH_3.0.2 i386-mingw32'
D, [2016-06-23T21:46:02.815869 #9808] DEBUG -- socket[287ab64]: read 1460 bytes
D, [2016-06-23T21:46:02.815869 #9808] DEBUG -- socket[287ab64]: read 180 bytes
D, [2016-06-23T21:46:02.815869 #9808] DEBUG -- socket[287ab64]: received packet nr 0 type 20 len 1636
I, [2016-06-23T21:46:02.816369 #9808] INFO -- net.ssh.transport.algorithms[2861dfc]: got KEXINIT from server
I, [2016-06-23T21:46:02.816369 #9808] INFO -- net.ssh.transport.algorithms[2861dfc]: sending KEXINIT
D, [2016-06-23T21:46:02.816369 #9808] DEBUG -- socket[287ab64]: queueing packet nr 0 type 20 len 1684
D, [2016-06-23T21:46:02.816369 #9808] DEBUG -- socket[287ab64]: sent 1688 bytes
I, [2016-06-23T21:46:02.816869 #9808] INFO -- net.ssh.transport.algorithms[2861dfc]: negotiating algorithms
D, [2016-06-23T21:46:02.816869 #9808] DEBUG -- net.ssh.transport.algorithms[2861dfc]: negotiated:
* kex: diffie-hellman-group-exchange-sha1
* host_key: ssh-rsa
* encryption_server: aes128-cbc
* encryption_client: aes128-cbc
* hmac_client: hmac-sha1
* hmac_server: hmac-sha1
* compression_client: none
* compression_server: none
* language_client:
* language_server:
D, [2016-06-23T21:46:02.816869 #9808] DEBUG -- net.ssh.transport.algorithms[2861dfc]: exchanging keys
D, [2016-06-23T21:46:02.816869 #9808] DEBUG -- socket[287ab64]: queueing packet nr 1 type 34 len 20
D, [2016-06-23T21:46:02.817369 #9808] DEBUG -- socket[287ab64]: sent 24 bytes
D, [2016-06-23T21:46:02.917369 #9808] DEBUG -- socket[287ab64]: read 152 bytes
D, [2016-06-23T21:46:02.917369 #9808] DEBUG -- socket[287ab64]: received packet nr 1 type 31 len 148
D, [2016-06-23T21:46:02.920369 #9808] DEBUG -- socket[287ab64]: queueing packet nr 2 type 32 len 140
D, [2016-06-23T21:46:02.920369 #9808] DEBUG -- socket[287ab64]: sent 144 bytes
D, [2016-06-23T21:46:02.930869 #9808] DEBUG -- socket[287ab64]: read 720 bytes
D, [2016-06-23T21:46:02.930869 #9808] DEBUG -- socket[287ab64]: received packet nr 2 type 33 len 700
D, [2016-06-23T21:46:02.933869 #9808] DEBUG -- socket[287ab64]: queueing packet nr 3 type 21 len 20
D, [2016-06-23T21:46:02.933869 #9808] DEBUG -- socket[287ab64]: sent 24 bytes
D, [2016-06-23T21:46:02.933869 #9808] DEBUG -- socket[287ab64]: received packet nr 3 type 21 len 12
D, [2016-06-23T21:46:02.934369 #9808] DEBUG -- net.ssh.authentication.session[24443d0]: beginning authentication of `vagrant'
D, [2016-06-23T21:46:02.934369 #9808] DEBUG -- socket[287ab64]: queueing packet nr 4 type 5 len 28
D, [2016-06-23T21:46:02.934869 #9808] DEBUG -- socket[287ab64]: sent 52 bytes
D, [2016-06-23T21:46:02.944869 #9808] DEBUG -- socket[287ab64]: read 52 bytes
D, [2016-06-23T21:46:02.944869 #9808] DEBUG -- socket[287ab64]: received packet nr 4 type 6 len 28
D, [2016-06-23T21:46:02.944869 #9808] DEBUG -- net.ssh.authentication.session[24443d0]: trying none
D, [2016-06-23T21:46:02.945369 #9808] DEBUG -- socket[287ab64]: queueing packet nr 5 type 50 len 44
D, [2016-06-23T21:46:02.945369 #9808] DEBUG -- socket[287ab64]: sent 68 bytes
D, [2016-06-23T21:46:02.955369 #9808] DEBUG -- socket[287ab64]: read 68 bytes
D, [2016-06-23T21:46:02.955369 #9808] DEBUG -- socket[287ab64]: received packet nr 5 type 51 len 44
D, [2016-06-23T21:46:02.955369 #9808] DEBUG -- net.ssh.authentication.session[24443d0]: allowed methods: publickey,password
D, [2016-06-23T21:46:02.955369 #9808] DEBUG -- net.ssh.authentication.methods.none[243c408]: none failed
D, [2016-06-23T21:46:02.955869 #9808] DEBUG -- net.ssh.authentication.session[24443d0]: trying publickey
D, [2016-06-23T21:46:02.956869 #9808] DEBUG -- net.ssh.authentication.agent[2435760]: connecting to ssh-agent
E, [2016-06-23T21:46:02.956869 #9808] ERROR -- net.ssh.authentication.agent[2435760]: could not connect to ssh-agent
D, [2016-06-23T21:46:02.956869 #9808] DEBUG -- net.ssh.authentication.methods.publickey[24359b8]: trying publickey (dd:3b:b8:2e:85:04:06:e9:ab:ff:a8:0a:c0:04:6e:d6)
D, [2016-06-23T21:46:02.957369 #9808] DEBUG -- socket[287ab64]: queueing packet nr 6 type 50 len 348
D, [2016-06-23T21:46:02.957369 #9808] DEBUG -- socket[287ab64]: sent 372 bytes
D, [2016-06-23T21:46:03.047369 #9808] DEBUG -- socket[287ab64]: read 324 bytes
D, [2016-06-23T21:46:03.047369 #9808] DEBUG -- socket[287ab64]: received packet nr 6 type 60 len 300
D, [2016-06-23T21:46:03.053869 #9808] DEBUG -- socket[287ab64]: queueing packet nr 7 type 50 len 620
D, [2016-06-23T21:46:03.053869 #9808] DEBUG -- socket[287ab64]: sent 644 bytes
D, [2016-06-23T21:46:03.224369 #9808] DEBUG -- socket[287ab64]: read 36 bytes
D, [2016-06-23T21:46:03.224369 #9808] DEBUG -- socket[287ab64]: received packet nr 7 type 52 len 12
D, [2016-06-23T21:46:03.224369 #9808] DEBUG -- net.ssh.authentication.methods.publickey[24359b8]: publickey succeeded (dd:3b:b8:2e:85:04:06:e9:ab:ff:a8:0a:c0:04:6e:d6)
DEBUG ssh: == Net-SSH connection debug-level log END ==
DEBUG ssh: Checking whether SSH is ready...
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG ssh: Exit status: 0
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: Searching for SSH port: 22
DEBUG virtualbox_5_0: read_forward_ports: uuid=32a60af2-1934-453d-abf6-c237fc93843a active_only=false
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: - [1, "ssh", 2222, 22]
DEBUG virtualbox_5_0: - [1, "tcp3306", 3306, 3306]
DEBUG virtualbox_5_0: - [1, "tcp50000", 50000, 50000]
DEBUG virtualbox_5_0: - [1, "tcp5432", 5432, 5432]
DEBUG virtualbox_5_0: - [1, "tcp8000", 8000, 8000]
DEBUG virtualbox_5_0: - [1, "tcp8080", 8080, 8080]
DEBUG virtualbox_5_0: - [1, "tcp9080", 9080, 9080]
INFO interface: detail:
Vagrant insecure key detected. Vagrant will automatically replace
this with a newly generated keypair for better security.
INFO interface: detail: dockerhost:
dockerhost: Vagrant insecure key detected. Vagrant will automatically replace
dockerhost: this with a newly generated keypair for better security.
 dockerhost:
dockerhost: Vagrant insecure key detected. Vagrant will automatically replace
dockerhost: this with a newly generated keypair for better security.
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
INFO guest: Autodetecting host type for [#<Vagrant::Machine: dockerhost (VagrantPlugins::ProviderVirtualBox::Provider)>]
DEBUG guest: Trying: atomic
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: grep 'ostree=' /proc/cmdline (sudo=false)
DEBUG ssh: Exit status: 1
DEBUG guest: Trying: mint
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: cat /etc/issue | grep 'Linux Mint' (sudo=false)
DEBUG ssh: Exit status: 1
DEBUG guest: Trying: fedora
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: grep 'Fedora release' /etc/redhat-release (sudo=false)
DEBUG ssh: Exit status: 1
DEBUG guest: Trying: pld
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: cat /etc/pld-release (sudo=false)
DEBUG ssh: stderr: cat: /etc/pld-release: No such file or directory
DEBUG ssh: Exit status: 1
DEBUG guest: Trying: ubuntu
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: [ -x /usr/bin/lsb_release ] && /usr/bin/lsb_release -i 2>/dev/null | grep Ubuntu (sudo=false)
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG ssh: Exit status: 1
DEBUG guest: Trying: arch
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: cat /etc/arch-release (sudo=false)
DEBUG ssh: stderr: cat: /etc/arch-release: No such file or directory
DEBUG ssh: Exit status: 1
DEBUG guest: Trying: coreos
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: cat /etc/os-release | grep ID=coreos (sudo=false)
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
DEBUG ssh: Exit status: 1
DEBUG guest: Trying: debian
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: cat /etc/issue | grep 'Debian' (sudo=false)
DEBUG ssh: Exit status: 1
DEBUG guest: Trying: funtoo
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: grep Funtoo /etc/gentoo-release (sudo=false)
DEBUG ssh: stderr: grep: /etc/gentoo-release: No such file or directory
DEBUG ssh: Exit status: 2
DEBUG guest: Trying: gentoo
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: grep Gentoo /etc/gentoo-release (sudo=false)
DEBUG ssh: stderr: grep: /etc/gentoo-release: No such file or directory
DEBUG ssh: Exit status: 2
DEBUG guest: Trying: nixos
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: test -f /run/current-system/nixos-version (sudo=false)
DEBUG ssh: Exit status: 1
DEBUG guest: Trying: omnios
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: cat /etc/release | grep -i OmniOS (sudo=false)
DEBUG ssh: stderr: cat: /etc/release: No such file or directory
DEBUG ssh: Exit status: 1
DEBUG guest: Trying: photon
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: cat /etc/photon-release | grep 'VMware Photon Linux' (sudo=false)
DEBUG ssh: stderr: cat: /etc/photon-release: No such file or directory
DEBUG ssh: Exit status: 1
DEBUG guest: Trying: redhat
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: cat /etc/redhat-release (sudo=false)
DEBUG ssh: stdout: CentOS Linux release 7.2.1511 (Core)
DEBUG ssh: Exit status: 0
INFO guest: Detected: redhat!
DEBUG guest: Searching for cap: insert_public_key
DEBUG guest: Checking in: redhat
DEBUG guest: Checking in: linux
DEBUG guest: Found cap: insert_public_key in linux
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG guest: Searching for cap: remove_public_key
DEBUG guest: Checking in: redhat
DEBUG guest: Checking in: linux
DEBUG guest: Found cap: remove_public_key in linux
INFO ssh: Inserting key to avoid password: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC1JdjrZIbog9LrXESpTGn3ciC5yplP+H9GLj+dgV1YeDD7n4HGr752yR1EoIOJIpMLGYepSPB6Cp9hruTTHKsAm8fchfKe8qiLBkZOnuyXM/SjqRa9C72Fh2nJGHJNTCiDvDRr8qabl780mmEHGcVzSDsQBSm/uI6k+MDjIP+1dsi/hWdfbLdVj3AKRWLS/CVPOR3WIjCeNQrCfSx4Cxb/x+HaJcZAEplFCyOhlqy08scZUAiHW2euLaej0hWKulACJD/fJzlq2hbvMOOqJkMyLRDIsR3W/NdKVmnGhrOXne+1i64CxxI3gbWtgeScjberwfHdt7CM6LrDGBEt1VBX vagrant
INFO interface: detail:
Inserting generated public key within guest...
INFO interface: detail: dockerhost:
dockerhost: Inserting generated public key within guest...
 dockerhost:
dockerhost: Inserting generated public key within guest...
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG guest: Searching for cap: insert_public_key
DEBUG guest: Checking in: redhat
DEBUG guest: Checking in: linux
DEBUG guest: Found cap: insert_public_key in linux
INFO guest: Execute capability: insert_public_key [#<Vagrant::Machine: dockerhost (VagrantPlugins::ProviderVirtualBox::Provider)>, "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC1JdjrZIbog9LrXESpTGn3ciC5yplP+H9GLj+dgV1YeDD7n4HGr752yR1EoIOJIpMLGYepSPB6Cp9hruTTHKsAm8fchfKe8qiLBkZOnuyXM/SjqRa9C72Fh2nJGHJNTCiDvDRr8qabl780mmEHGcVzSDsQBSm/uI6k+MDjIP+1dsi/hWdfbLdVj3AKRWLS/CVPOR3WIjCeNQrCfSx4Cxb/x+HaJcZAEplFCyOhlqy08scZUAiHW2euLaej0hWKulACJD/fJzlq2hbvMOOqJkMyLRDIsR3W/NdKVmnGhrOXne+1i64CxxI3gbWtgeScjberwfHdt7CM6LrDGBEt1VBX vagrant"] (redhat)
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: mkdir -p ~/.ssh (sudo=false)
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: chmod 0700 ~/.ssh (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: printf 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC1JdjrZIbog9LrXESpTGn3ciC5yplP+H9GLj+dgV1YeDD7n4HGr752yR1EoIOJIpMLGYepSPB6Cp9hruTTHKsAm8fchfKe8qiLBkZOnuyXM/SjqRa9C72Fh2nJGHJNTCiDvDRr8qabl780mmEHGcVzSDsQBSm/uI6k+MDjIP+1dsi/hWdfbLdVj3AKRWLS/CVPOR3WIjCeNQrCfSx4Cxb/x+HaJcZAEplFCyOhlqy08scZUAiHW2euLaej0hWKulACJD/fJzlq2hbvMOOqJkMyLRDIsR3W/NdKVmnGhrOXne+1i64CxxI3gbWtgeScjberwfHdt7CM6LrDGBEt1VBX vagrant\n' >> ~/.ssh/authorized_keys (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: chmod 0600 ~/.ssh/authorized_keys (sudo=false)
DEBUG ssh: Exit status: 0
INFO interface: detail: Removing insecure key from the guest if it's present...
INFO interface: detail: dockerhost: Removing insecure key from the guest if it's present...
 dockerhost: Removing insecure key from the guest if it's present...
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG guest: Searching for cap: remove_public_key
DEBUG guest: Checking in: redhat
DEBUG guest: Checking in: linux
DEBUG guest: Found cap: remove_public_key in linux
INFO guest: Execute capability: remove_public_key [#<Vagrant::Machine: dockerhost (VagrantPlugins::ProviderVirtualBox::Provider)>, "ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA6NF8iallvQVp22WDkTkyrtvp9eWW6A8YVr+kz4TjGYe7gHzIw+niNltGEFHzD8+v1I2YJ6oXevct1YeS0o9HZyN1Q9qgCgzUFtdOKLv6IedplqoPkcmF0aYet2PkEDo3MlTBckFXPITAMzF8dJSIFo9D8HfdOV0IAdx4O7PtixWKn5y2hMNG0zQPyUecp4pzC6kivAIhyfHilFR61RGL+GPXQ2MWZWFYbAGjyiYJnAmCP3NOTd0jMZEnDkbUvxhMmBYSdETk1rRgm+R4LOzFUGaHqHDLKLX+FIPKcF96hrucXzcWyLbIbEgE98OHlnVYCzRdK8jlqm8tehUc9c9WhQ== vagrant insecure public key"] (redhat)
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: test -f ~/.ssh/authorized_keys (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: sed -e '/^.*ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA6NF8iallvQVp22WDkTkyrtvp9eWW6A8YVr+kz4TjGYe7gHzIw+niNltGEFHzD8+v1I2YJ6oXevct1YeS0o9HZyN1Q9qgCgzUFtdOKLv6IedplqoPkcmF0aYet2PkEDo3MlTBckFXPITAMzF8dJSIFo9D8HfdOV0IAdx4O7PtixWKn5y2hMNG0zQPyUecp4pzC6kivAIhyfHilFR61RGL+GPXQ2MWZWFYbAGjyiYJnAmCP3NOTd0jMZEnDkbUvxhMmBYSdETk1rRgm+R4LOzFUGaHqHDLKLX+FIPKcF96hrucXzcWyLbIbEgE98OHlnVYCzRdK8jlqm8tehUc9c9WhQ== vagrant insecure public key.*$/d' ~/.ssh/authorized_keys > ~/.ssh/authorized_keys.new
mv ~/.ssh/authorized_keys.new ~/.ssh/authorized_keys
chmod 600 ~/.ssh/authorized_keys
(sudo=false)
DEBUG ssh: Exit status: 0
INFO interface: detail: Key inserted! Disconnecting and reconnecting using new SSH key...
INFO interface: detail: dockerhost: Key inserted! Disconnecting and reconnecting using new SSH key...
 dockerhost: Key inserted! Disconnecting and reconnecting using new SSH key...
DEBUG ssh: Checking whether SSH is ready...
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: Searching for SSH port: 22
DEBUG virtualbox_5_0: read_forward_ports: uuid=32a60af2-1934-453d-abf6-c237fc93843a active_only=false
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: - [1, "ssh", 2222, 22]
DEBUG virtualbox_5_0: - [1, "tcp3306", 3306, 3306]
DEBUG virtualbox_5_0: - [1, "tcp50000", 50000, 50000]
DEBUG virtualbox_5_0: - [1, "tcp5432", 5432, 5432]
DEBUG virtualbox_5_0: - [1, "tcp8000", 8000, 8000]
DEBUG virtualbox_5_0: - [1, "tcp8080", 8080, 8080]
DEBUG virtualbox_5_0: - [1, "tcp9080", 9080, 9080]
INFO ssh: Attempting SSH connection...
INFO ssh: Attempting to connect to SSH...
INFO ssh: - Host: 127.0.0.1
INFO ssh: - Port: 2222
INFO ssh: - Username: vagrant
INFO ssh: - Password? false
INFO ssh: - Key Path: ["C:/dev/vagrant/workspace/SpringMVCHibernate/vagrant-centos-mysql-tomcat/host/.vagrant/machines/dockerhost/virtualbox/private_key"]
DEBUG ssh: == Net-SSH connection debug-level log START ==
DEBUG ssh: D, [2016-06-23T21:46:07.042869 #9808] DEBUG -- net.ssh.transport.session[2a73200]: establishing connection to 127.0.0.1:2222
D, [2016-06-23T21:46:07.043369 #9808] DEBUG -- net.ssh.transport.session[2a73200]: connection established
I, [2016-06-23T21:46:07.043369 #9808] INFO -- net.ssh.transport.server_version[2a729b4]: negotiating protocol version
D, [2016-06-23T21:46:07.053369 #9808] DEBUG -- net.ssh.transport.server_version[2a729b4]: remote is `SSH-2.0-OpenSSH_6.6.1'
D, [2016-06-23T21:46:07.053369 #9808] DEBUG -- net.ssh.transport.server_version[2a729b4]: local is `SSH-2.0-Ruby/Net::SSH_3.0.2 i386-mingw32'
D, [2016-06-23T21:46:07.058869 #9808] DEBUG -- socket[2a72f30]: read 1640 bytes
D, [2016-06-23T21:46:07.058869 #9808] DEBUG -- socket[2a72f30]: received packet nr 0 type 20 len 1636
I, [2016-06-23T21:46:07.059369 #9808] INFO -- net.ssh.transport.algorithms[2a7206c]: got KEXINIT from server
I, [2016-06-23T21:46:07.059369 #9808] INFO -- net.ssh.transport.algorithms[2a7206c]: sending KEXINIT
D, [2016-06-23T21:46:07.059369 #9808] DEBUG -- socket[2a72f30]: queueing packet nr 0 type 20 len 1684
D, [2016-06-23T21:46:07.059369 #9808] DEBUG -- socket[2a72f30]: sent 1688 bytes
I, [2016-06-23T21:46:07.059869 #9808] INFO -- net.ssh.transport.algorithms[2a7206c]: negotiating algorithms
D, [2016-06-23T21:46:07.059869 #9808] DEBUG -- net.ssh.transport.algorithms[2a7206c]: negotiated:
* kex: diffie-hellman-group-exchange-sha1
* host_key: ssh-rsa
* encryption_server: aes128-cbc
* encryption_client: aes128-cbc
* hmac_client: hmac-sha1
* hmac_server: hmac-sha1
* compression_client: none
* compression_server: none
* language_client:
* language_server:
D, [2016-06-23T21:46:07.059869 #9808] DEBUG -- net.ssh.transport.algorithms[2a7206c]: exchanging keys
D, [2016-06-23T21:46:07.059869 #9808] DEBUG -- socket[2a72f30]: queueing packet nr 1 type 34 len 20
D, [2016-06-23T21:46:07.059869 #9808] DEBUG -- socket[2a72f30]: sent 24 bytes
D, [2016-06-23T21:46:07.070369 #9808] DEBUG -- socket[2a72f30]: read 152 bytes
D, [2016-06-23T21:46:07.070369 #9808] DEBUG -- socket[2a72f30]: received packet nr 1 type 31 len 148
D, [2016-06-23T21:46:07.073369 #9808] DEBUG -- socket[2a72f30]: queueing packet nr 2 type 32 len 140
D, [2016-06-23T21:46:07.073369 #9808] DEBUG -- socket[2a72f30]: sent 144 bytes
D, [2016-06-23T21:46:07.083369 #9808] DEBUG -- socket[2a72f30]: read 720 bytes
D, [2016-06-23T21:46:07.083369 #9808] DEBUG -- socket[2a72f30]: received packet nr 2 type 33 len 700
D, [2016-06-23T21:46:07.086369 #9808] DEBUG -- socket[2a72f30]: queueing packet nr 3 type 21 len 20
D, [2016-06-23T21:46:07.086869 #9808] DEBUG -- socket[2a72f30]: sent 24 bytes
D, [2016-06-23T21:46:07.086869 #9808] DEBUG -- socket[2a72f30]: received packet nr 3 type 21 len 12
D, [2016-06-23T21:46:07.087369 #9808] DEBUG -- net.ssh.authentication.session[29591e8]: beginning authentication of `vagrant'
D, [2016-06-23T21:46:07.087369 #9808] DEBUG -- socket[2a72f30]: queueing packet nr 4 type 5 len 28
D, [2016-06-23T21:46:07.087369 #9808] DEBUG -- socket[2a72f30]: sent 52 bytes
D, [2016-06-23T21:46:07.097869 #9808] DEBUG -- socket[2a72f30]: read 52 bytes
D, [2016-06-23T21:46:07.097869 #9808] DEBUG -- socket[2a72f30]: received packet nr 4 type 6 len 28
D, [2016-06-23T21:46:07.098369 #9808] DEBUG -- net.ssh.authentication.session[29591e8]: trying none
D, [2016-06-23T21:46:07.098369 #9808] DEBUG -- socket[2a72f30]: queueing packet nr 5 type 50 len 44
D, [2016-06-23T21:46:07.098869 #9808] DEBUG -- socket[2a72f30]: sent 68 bytes
D, [2016-06-23T21:46:07.108869 #9808] DEBUG -- socket[2a72f30]: read 68 bytes
D, [2016-06-23T21:46:07.108869 #9808] DEBUG -- socket[2a72f30]: received packet nr 5 type 51 len 44
D, [2016-06-23T21:46:07.109369 #9808] DEBUG -- net.ssh.authentication.session[29591e8]: allowed methods: publickey,password
D, [2016-06-23T21:46:07.109369 #9808] DEBUG -- net.ssh.authentication.methods.none[2955eb8]: none failed
D, [2016-06-23T21:46:07.109369 #9808] DEBUG -- net.ssh.authentication.session[29591e8]: trying publickey
D, [2016-06-23T21:46:07.109869 #9808] DEBUG -- net.ssh.authentication.agent[2954a0c]: connecting to ssh-agent
E, [2016-06-23T21:46:07.110369 #9808] ERROR -- net.ssh.authentication.agent[2954a0c]: could not connect to ssh-agent
D, [2016-06-23T21:46:07.110369 #9808] DEBUG -- net.ssh.authentication.methods.publickey[2954ba4]: trying publickey (dc:0b:d4:32:7c:23:99:5a:53:8e:3f:c6:83:b6:91:58)
D, [2016-06-23T21:46:07.110369 #9808] DEBUG -- socket[2a72f30]: queueing packet nr 6 type 50 len 348
D, [2016-06-23T21:46:07.110369 #9808] DEBUG -- socket[2a72f30]: sent 372 bytes
D, [2016-06-23T21:46:07.120869 #9808] DEBUG -- socket[2a72f30]: read 324 bytes
D, [2016-06-23T21:46:07.120869 #9808] DEBUG -- socket[2a72f30]: received packet nr 6 type 60 len 300
D, [2016-06-23T21:46:07.126869 #9808] DEBUG -- socket[2a72f30]: queueing packet nr 7 type 50 len 620
D, [2016-06-23T21:46:07.126869 #9808] DEBUG -- socket[2a72f30]: sent 644 bytes
D, [2016-06-23T21:46:07.136869 #9808] DEBUG -- socket[2a72f30]: read 36 bytes
D, [2016-06-23T21:46:07.136869 #9808] DEBUG -- socket[2a72f30]: received packet nr 7 type 52 len 12
D, [2016-06-23T21:46:07.136869 #9808] DEBUG -- net.ssh.authentication.methods.publickey[2954ba4]: publickey succeeded (dc:0b:d4:32:7c:23:99:5a:53:8e:3f:c6:83:b6:91:58)
DEBUG ssh: == Net-SSH connection debug-level log END ==
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG ssh: Exit status: 0
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO interface: output: Machine booted and ready!
INFO interface: output: dockerhost: Machine booted and ready!
 dockerhost: Machine booted and ready!
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::Customize:0x49878a8>
INFO warden: Calling IN action: #<VagrantVbguest::Middleware:0x4987878>
DEBUG vbguest-machine: initialize vbguest machine for VM 'dockerhost' (#<Vagrant::Machine:0x43b6210>)
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: test -f /etc/oracle-release (sudo=false)
DEBUG ssh: Exit status: 1
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "guestproperty", "get", "32a60af2-1934-453d-abf6-c237fc93843a", "/VirtualBox/GuestAdd/Version"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Value: 5.0.20
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: VBoxService --version (sudo=true)
DEBUG ssh: stdout: 5.0.20r106931
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: lsmod | grep vboxsf (sudo=true)
DEBUG ssh: stdout: vboxsf 39741 0
vboxguest 297222 2 vboxsf
DEBUG ssh: Exit status: 0
DEBUG vbguest-machine: Current states for VM 'dockerhost' are : guest_version=5.0.20 : host_version=5.0.22 : running=true
INFO interface: warn: GuestAdditions versions on your host (5.0.22) and guest (5.0.20) do not match.
GuestAdditions versions on your host (5.0.22) and guest (5.0.20) do not match.
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "guestproperty", "get", "32a60af2-1934-453d-abf6-c237fc93843a", "/VirtualBox/GuestAdd/Version"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Value: 5.0.20
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: VBoxService --version (sudo=true)
DEBUG ssh: stdout: 5.0.20r106931
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: lsmod | grep vboxsf (sudo=true)
DEBUG ssh: stdout: vboxsf 39741 0
vboxguest 297222 2 vboxsf
DEBUG ssh: Exit status: 0
DEBUG vbguest-machine: Current states for VM 'dockerhost' are : guest_version=5.0.20 : host_version=5.0.22 : running=true
DEBUG vbguest-machine: Runlist for state unmatched is: [:install]
DEBUG vbguest-machine: Running command install from runlist
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: yum install -y kernel-devel-`uname -r` gcc make perl bzip2 (sudo=true)
DEBUG ssh: stdout: Loaded plugins: fastestmirror
INFO interface: info: Loaded plugins: fastestmirror
Loaded plugins: fastestmirror
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stdout: Determining fastest mirrors
INFO interface: info: Determining fastest mirrors
Determining fastest mirrors
DEBUG ssh: stdout: * base: centos.hyve.com
* extras: centos.hyve.com
* updates: repo.bigstepcloud.com
INFO interface: info: * base: centos.hyve.com
* extras: centos.hyve.com
* updates: repo.bigstepcloud.com
 * base: centos.hyve.com
* extras: centos.hyve.com
* updates: repo.bigstepcloud.com
DEBUG ssh: stdout: Package 1:make-3.82-21.el7.x86_64 already installed and latest version
INFO interface: info: Package 1:make-3.82-21.el7.x86_64 already installed and latest version
Package 1:make-3.82-21.el7.x86_64 already installed and latest version
DEBUG ssh: stdout: Package bzip2-1.0.6-13.el7.x86_64 already installed and latest version
Resolving Dependencies
--> Running transaction check
---> Package gcc.x86_64 0:4.8.5-4.el7 will be installed
INFO interface: info: Package bzip2-1.0.6-13.el7.x86_64 already installed and latest version
Resolving Dependencies
--> Running transaction check
---> Package gcc.x86_64 0:4.8.5-4.el7 will be installed
Package bzip2-1.0.6-13.el7.x86_64 already installed and latest version
Resolving Dependencies
--> Running transaction check
---> Package gcc.x86_64 0:4.8.5-4.el7 will be installed
DEBUG ssh: stdout: --> Processing Dependency: cpp = 4.8.5-4.el7 for package: gcc-4.8.5-4.el7.x86_64
INFO interface: info: --> Processing Dependency: cpp = 4.8.5-4.el7 for package: gcc-4.8.5-4.el7.x86_64
--> Processing Dependency: cpp = 4.8.5-4.el7 for package: gcc-4.8.5-4.el7.x86_64
DEBUG ssh: stdout: --> Processing Dependency: glibc-devel >= 2.2.90-12 for package: gcc-4.8.5-4.el7.x86_64
INFO interface: info: --> Processing Dependency: glibc-devel >= 2.2.90-12 for package: gcc-4.8.5-4.el7.x86_64
--> Processing Dependency: glibc-devel >= 2.2.90-12 for package: gcc-4.8.5-4.el7.x86_64
DEBUG ssh: stdout: ---> Package kernel-devel.x86_64 0:3.10.0-327.el7 will be installed
---> Package perl.x86_64 4:5.16.3-286.el7 will be installed
INFO interface: info: ---> Package kernel-devel.x86_64 0:3.10.0-327.el7 will be installed
---> Package perl.x86_64 4:5.16.3-286.el7 will be installed
---> Package kernel-devel.x86_64 0:3.10.0-327.el7 will be installed
---> Package perl.x86_64 4:5.16.3-286.el7 will be installed
DEBUG ssh: stdout: --> Processing Dependency: perl-libs = 4:5.16.3-286.el7 for package: 4:perl-5.16.3-286.el7.x86_64
INFO interface: info: --> Processing Dependency: perl-libs = 4:5.16.3-286.el7 for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl-libs = 4:5.16.3-286.el7 for package: 4:perl-5.16.3-286.el7.x86_64
DEBUG ssh: stdout: --> Processing Dependency: perl(Socket) >= 1.3 for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Scalar::Util) >= 1.10 for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl-macros for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl-libs for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(threads::shared) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(threads) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(constant) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Time::Local) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Time::HiRes) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Storable) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Socket) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Scalar::Util) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Pod::Simple::XHTML) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Pod::Simple::Search) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Getopt::Long) for package: 4:perl-5.16.3-286.el7.x86_64
INFO interface: info: --> Processing Dependency: perl(Socket) >= 1.3 for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Scalar::Util) >= 1.10 for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl-macros for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl-libs for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(threads::shared) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(threads) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(constant) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Time::Local) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Time::HiRes) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Storable) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Socket) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Scalar::Util) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Pod::Simple::XHTML) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Pod::Simple::Search) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Getopt::Long) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Socket) >= 1.3 for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Scalar::Util) >= 1.10 for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl-macros for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl-libs for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(threads::shared) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(threads) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(constant) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Time::Local) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Time::HiRes) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Storable) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Socket) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Scalar::Util) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Pod::Simple::XHTML) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Pod::Simple::Search) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Getopt::Long) for package: 4:perl-5.16.3-286.el7.x86_64
DEBUG ssh: stdout: --> Processing Dependency: perl(Filter::Util::Call) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(File::Temp) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(File::Spec::Unix) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(File::Spec::Functions) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(File::Spec) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(File::Path) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Exporter) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Cwd) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Carp) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: libperl.so()(64bit) for package: 4:perl-5.16.3-286.el7.x86_64
--> Running transaction check
---> Package cpp.x86_64 0:4.8.5-4.el7 will be installed
INFO interface: info: --> Processing Dependency: perl(Filter::Util::Call) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(File::Temp) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(File::Spec::Unix) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(File::Spec::Functions) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(File::Spec) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(File::Path) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Exporter) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Cwd) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Carp) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: libperl.so()(64bit) for package: 4:perl-5.16.3-286.el7.x86_64
--> Running transaction check
---> Package cpp.x86_64 0:4.8.5-4.el7 will be installed
--> Processing Dependency: perl(Filter::Util::Call) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(File::Temp) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(File::Spec::Unix) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(File::Spec::Functions) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(File::Spec) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(File::Path) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Exporter) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Cwd) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Carp) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: libperl.so()(64bit) for package: 4:perl-5.16.3-286.el7.x86_64
--> Running transaction check
---> Package cpp.x86_64 0:4.8.5-4.el7 will be installed
DEBUG ssh: stdout: ---> Package glibc-devel.x86_64 0:2.17-106.el7_2.6 will be installed
--> Processing Dependency: glibc-headers = 2.17-106.el7_2.6 for package: glibc-devel-2.17-106.el7_2.6.x86_64
--> Processing Dependency: glibc = 2.17-106.el7_2.6 for package: glibc-devel-2.17-106.el7_2.6.x86_64
INFO interface: info: ---> Package glibc-devel.x86_64 0:2.17-106.el7_2.6 will be installed
--> Processing Dependency: glibc-headers = 2.17-106.el7_2.6 for package: glibc-devel-2.17-106.el7_2.6.x86_64
--> Processing Dependency: glibc = 2.17-106.el7_2.6 for package: glibc-devel-2.17-106.el7_2.6.x86_64
---> Package glibc-devel.x86_64 0:2.17-106.el7_2.6 will be installed
--> Processing Dependency: glibc-headers = 2.17-106.el7_2.6 for package: glibc-devel-2.17-106.el7_2.6.x86_64
--> Processing Dependency: glibc = 2.17-106.el7_2.6 for package: glibc-devel-2.17-106.el7_2.6.x86_64
DEBUG ssh: stdout: --> Processing Dependency: glibc-headers for package: glibc-devel-2.17-106.el7_2.6.x86_64
---> Package perl-Carp.noarch 0:1.26-244.el7 will be installed
---> Package perl-Exporter.noarch 0:5.68-3.el7 will be installed
INFO interface: info: --> Processing Dependency: glibc-headers for package: glibc-devel-2.17-106.el7_2.6.x86_64
---> Package perl-Carp.noarch 0:1.26-244.el7 will be installed
---> Package perl-Exporter.noarch 0:5.68-3.el7 will be installed
--> Processing Dependency: glibc-headers for package: glibc-devel-2.17-106.el7_2.6.x86_64
---> Package perl-Carp.noarch 0:1.26-244.el7 will be installed
---> Package perl-Exporter.noarch 0:5.68-3.el7 will be installed
DEBUG ssh: stdout: ---> Package perl-File-Path.noarch 0:2.09-2.el7 will be installed
---> Package perl-File-Temp.noarch 0:0.23.01-3.el7 will be installed
---> Package perl-Filter.x86_64 0:1.49-3.el7 will be installed
---> Package perl-Getopt-Long.noarch 0:2.40-2.el7 will be installed
--> Processing Dependency: perl(Pod::Usage) >= 1.14 for package: perl-Getopt-Long-2.40-2.el7.noarch
--> Processing Dependency: perl(Text::ParseWords) for package: perl-Getopt-Long-2.40-2.el7.noarch
INFO interface: info: ---> Package perl-File-Path.noarch 0:2.09-2.el7 will be installed
---> Package perl-File-Temp.noarch 0:0.23.01-3.el7 will be installed
---> Package perl-Filter.x86_64 0:1.49-3.el7 will be installed
---> Package perl-Getopt-Long.noarch 0:2.40-2.el7 will be installed
--> Processing Dependency: perl(Pod::Usage) >= 1.14 for package: perl-Getopt-Long-2.40-2.el7.noarch
--> Processing Dependency: perl(Text::ParseWords) for package: perl-Getopt-Long-2.40-2.el7.noarch
---> Package perl-File-Path.noarch 0:2.09-2.el7 will be installed
---> Package perl-File-Temp.noarch 0:0.23.01-3.el7 will be installed
---> Package perl-Filter.x86_64 0:1.49-3.el7 will be installed
---> Package perl-Getopt-Long.noarch 0:2.40-2.el7 will be installed
--> Processing Dependency: perl(Pod::Usage) >= 1.14 for package: perl-Getopt-Long-2.40-2.el7.noarch
--> Processing Dependency: perl(Text::ParseWords) for package: perl-Getopt-Long-2.40-2.el7.noarch
DEBUG ssh: stdout: ---> Package perl-PathTools.x86_64 0:3.40-5.el7 will be installed
---> Package perl-Pod-Simple.noarch 1:3.28-4.el7 will be installed
--> Processing Dependency: perl(Pod::Escapes) >= 1.04 for package: 1:perl-Pod-Simple-3.28-4.el7.noarch
--> Processing Dependency: perl(Encode) for package: 1:perl-Pod-Simple-3.28-4.el7.noarch
---> Package perl-Scalar-List-Utils.x86_64 0:1.27-248.el7 will be installed
---> Package perl-Socket.x86_64 0:2.010-3.el7 will be installed
---> Package perl-Storable.x86_64 0:2.45-3.el7 will be installed
---> Package perl-Time-HiRes.x86_64 4:1.9725-3.el7 will be installed
---> Package perl-Time-Local.noarch 0:1.2300-2.el7 will be installed
---> Package perl-constant.noarch 0:1.27-2.el7 will be installed
INFO interface: info: ---> Package perl-PathTools.x86_64 0:3.40-5.el7 will be installed
---> Package perl-Pod-Simple.noarch 1:3.28-4.el7 will be installed
--> Processing Dependency: perl(Pod::Escapes) >= 1.04 for package: 1:perl-Pod-Simple-3.28-4.el7.noarch
--> Processing Dependency: perl(Encode) for package: 1:perl-Pod-Simple-3.28-4.el7.noarch
---> Package perl-Scalar-List-Utils.x86_64 0:1.27-248.el7 will be installed
---> Package perl-Socket.x86_64 0:2.010-3.el7 will be installed
---> Package perl-Storable.x86_64 0:2.45-3.el7 will be installed
---> Package perl-Time-HiRes.x86_64 4:1.9725-3.el7 will be installed
---> Package perl-Time-Local.noarch 0:1.2300-2.el7 will be installed
---> Package perl-constant.noarch 0:1.27-2.el7 will be installed
---> Package perl-PathTools.x86_64 0:3.40-5.el7 will be installed
---> Package perl-Pod-Simple.noarch 1:3.28-4.el7 will be installed
--> Processing Dependency: perl(Pod::Escapes) >= 1.04 for package: 1:perl-Pod-Simple-3.28-4.el7.noarch
--> Processing Dependency: perl(Encode) for package: 1:perl-Pod-Simple-3.28-4.el7.noarch
---> Package perl-Scalar-List-Utils.x86_64 0:1.27-248.el7 will be installed
---> Package perl-Socket.x86_64 0:2.010-3.el7 will be installed
---> Package perl-Storable.x86_64 0:2.45-3.el7 will be installed
---> Package perl-Time-HiRes.x86_64 4:1.9725-3.el7 will be installed
---> Package perl-Time-Local.noarch 0:1.2300-2.el7 will be installed
---> Package perl-constant.noarch 0:1.27-2.el7 will be installed
DEBUG ssh: stdout: ---> Package perl-libs.x86_64 4:5.16.3-286.el7 will be installed
---> Package perl-macros.x86_64 4:5.16.3-286.el7 will be installed
---> Package perl-threads.x86_64 0:1.87-4.el7 will be installed
---> Package perl-threads-shared.x86_64 0:1.43-6.el7 will be installed
--> Running transaction check
---> Package glibc.x86_64 0:2.17-105.el7 will be updated
INFO interface: info: ---> Package perl-libs.x86_64 4:5.16.3-286.el7 will be installed
---> Package perl-macros.x86_64 4:5.16.3-286.el7 will be installed
---> Package perl-threads.x86_64 0:1.87-4.el7 will be installed
---> Package perl-threads-shared.x86_64 0:1.43-6.el7 will be installed
--> Running transaction check
---> Package glibc.x86_64 0:2.17-105.el7 will be updated
---> Package perl-libs.x86_64 4:5.16.3-286.el7 will be installed
---> Package perl-macros.x86_64 4:5.16.3-286.el7 will be installed
---> Package perl-threads.x86_64 0:1.87-4.el7 will be installed
---> Package perl-threads-shared.x86_64 0:1.43-6.el7 will be installed
--> Running transaction check
---> Package glibc.x86_64 0:2.17-105.el7 will be updated
DEBUG ssh: stdout: --> Processing Dependency: glibc = 2.17-105.el7 for package: glibc-common-2.17-105.el7.x86_64
INFO interface: info: --> Processing Dependency: glibc = 2.17-105.el7 for package: glibc-common-2.17-105.el7.x86_64
--> Processing Dependency: glibc = 2.17-105.el7 for package: glibc-common-2.17-105.el7.x86_64
DEBUG ssh: stdout: ---> Package glibc.x86_64 0:2.17-106.el7_2.6 will be an update
INFO interface: info: ---> Package glibc.x86_64 0:2.17-106.el7_2.6 will be an update
---> Package glibc.x86_64 0:2.17-106.el7_2.6 will be an update
DEBUG ssh: stdout: ---> Package glibc-headers.x86_64 0:2.17-106.el7_2.6 will be installed
--> Processing Dependency: kernel-headers >= 2.2.1 for package: glibc-headers-2.17-106.el7_2.6.x86_64
INFO interface: info: ---> Package glibc-headers.x86_64 0:2.17-106.el7_2.6 will be installed
--> Processing Dependency: kernel-headers >= 2.2.1 for package: glibc-headers-2.17-106.el7_2.6.x86_64
---> Package glibc-headers.x86_64 0:2.17-106.el7_2.6 will be installed
--> Processing Dependency: kernel-headers >= 2.2.1 for package: glibc-headers-2.17-106.el7_2.6.x86_64
DEBUG ssh: stdout: --> Processing Dependency: kernel-headers for package: glibc-headers-2.17-106.el7_2.6.x86_64
---> Package perl-Encode.x86_64 0:2.51-7.el7 will be installed
---> Package perl-Pod-Escapes.noarch 1:1.04-286.el7 will be installed
---> Package perl-Pod-Usage.noarch 0:1.63-3.el7 will be installed
INFO interface: info: --> Processing Dependency: kernel-headers for package: glibc-headers-2.17-106.el7_2.6.x86_64
---> Package perl-Encode.x86_64 0:2.51-7.el7 will be installed
---> Package perl-Pod-Escapes.noarch 1:1.04-286.el7 will be installed
---> Package perl-Pod-Usage.noarch 0:1.63-3.el7 will be installed
--> Processing Dependency: kernel-headers for package: glibc-headers-2.17-106.el7_2.6.x86_64
---> Package perl-Encode.x86_64 0:2.51-7.el7 will be installed
---> Package perl-Pod-Escapes.noarch 1:1.04-286.el7 will be installed
---> Package perl-Pod-Usage.noarch 0:1.63-3.el7 will be installed
DEBUG ssh: stdout: --> Processing Dependency: perl(Pod::Text) >= 3.15 for package: perl-Pod-Usage-1.63-3.el7.noarch
--> Processing Dependency: perl-Pod-Perldoc for package: perl-Pod-Usage-1.63-3.el7.noarch
---> Package perl-Text-ParseWords.noarch 0:3.29-4.el7 will be installed
--> Running transaction check
---> Package glibc-common.x86_64 0:2.17-105.el7 will be updated
---> Package glibc-common.x86_64 0:2.17-106.el7_2.6 will be an update
INFO interface: info: --> Processing Dependency: perl(Pod::Text) >= 3.15 for package: perl-Pod-Usage-1.63-3.el7.noarch
--> Processing Dependency: perl-Pod-Perldoc for package: perl-Pod-Usage-1.63-3.el7.noarch
---> Package perl-Text-ParseWords.noarch 0:3.29-4.el7 will be installed
--> Running transaction check
---> Package glibc-common.x86_64 0:2.17-105.el7 will be updated
---> Package glibc-common.x86_64 0:2.17-106.el7_2.6 will be an update
--> Processing Dependency: perl(Pod::Text) >= 3.15 for package: perl-Pod-Usage-1.63-3.el7.noarch
--> Processing Dependency: perl-Pod-Perldoc for package: perl-Pod-Usage-1.63-3.el7.noarch
---> Package perl-Text-ParseWords.noarch 0:3.29-4.el7 will be installed
--> Running transaction check
---> Package glibc-common.x86_64 0:2.17-105.el7 will be updated
---> Package glibc-common.x86_64 0:2.17-106.el7_2.6 will be an update
DEBUG ssh: stdout: ---> Package kernel-headers.x86_64 0:3.10.0-327.18.2.el7 will be installed
---> Package perl-Pod-Perldoc.noarch 0:3.20-4.el7 will be installed
--> Processing Dependency: perl(parent) for package: perl-Pod-Perldoc-3.20-4.el7.noarch
--> Processing Dependency: perl(HTTP::Tiny) for package: perl-Pod-Perldoc-3.20-4.el7.noarch
---> Package perl-podlators.noarch 0:2.5.1-3.el7 will be installed
--> Running transaction check
---> Package perl-HTTP-Tiny.noarch 0:0.033-3.el7 will be installed
INFO interface: info: ---> Package kernel-headers.x86_64 0:3.10.0-327.18.2.el7 will be installed
---> Package perl-Pod-Perldoc.noarch 0:3.20-4.el7 will be installed
--> Processing Dependency: perl(parent) for package: perl-Pod-Perldoc-3.20-4.el7.noarch
--> Processing Dependency: perl(HTTP::Tiny) for package: perl-Pod-Perldoc-3.20-4.el7.noarch
---> Package perl-podlators.noarch 0:2.5.1-3.el7 will be installed
--> Running transaction check
---> Package perl-HTTP-Tiny.noarch 0:0.033-3.el7 will be installed
---> Package kernel-headers.x86_64 0:3.10.0-327.18.2.el7 will be installed
---> Package perl-Pod-Perldoc.noarch 0:3.20-4.el7 will be installed
--> Processing Dependency: perl(parent) for package: perl-Pod-Perldoc-3.20-4.el7.noarch
--> Processing Dependency: perl(HTTP::Tiny) for package: perl-Pod-Perldoc-3.20-4.el7.noarch
---> Package perl-podlators.noarch 0:2.5.1-3.el7 will be installed
--> Running transaction check
---> Package perl-HTTP-Tiny.noarch 0:0.033-3.el7 will be installed
DEBUG ssh: stdout: ---> Package perl-parent.noarch 1:0.225-244.el7 will be installed
INFO interface: info: ---> Package perl-parent.noarch 1:0.225-244.el7 will be installed
---> Package perl-parent.noarch 1:0.225-244.el7 will be installed
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stdout: --> Finished Dependency Resolution
INFO interface: info: --> Finished Dependency Resolution
--> Finished Dependency Resolution
DEBUG ssh: stdout:
Dependencies Resolved
INFO interface: info:
Dependencies Resolved

Dependencies Resolved
DEBUG ssh: stdout:
================================================================================
Package Arch Version Repository Size
================================================================================
Installing:
gcc x86_64 4.8.5-4.el7 base 16 M
kernel-devel x86_64 3.10.0-327.el7 base 11 M
perl x86_64 4:5.16.3-286.el7 base 8.0 M
Installing for dependencies:
cpp x86_64 4.8.5-4.el7 base 5.9 M
glibc-devel x86_64 2.17-106.el7_2.6 updates 1.0 M
glibc-headers x86_64 2.17-106.el7_2.6 updates 662 k
kernel-headers x86_64 3.10.0-327.18.2.el7 updates 3.2 M
perl-Carp noarch 1.26-244.el7 base 19 k
perl-Encode x86_64 2.51-7.el7 base 1.5 M
perl-Exporter noarch 5.68-3.el7 base 28 k
perl-File-Path noarch 2.09-2.el7 base 26 k
perl-File-Temp noarch 0.23.01-3.el7 base 56 k
perl-Filter x86_64 1.49-3.el7 base 76 k
perl-Getopt-Long noarch 2.40-2.el7 base 56 k
perl-HTTP-Tiny noarch 0.033-3.el7 base 38 k
perl-PathTools x86_64 3.40-5.el7 base 82 k
perl-Pod-Escapes noarch 1:1.04-286.el7 base 50 k
perl-Pod-Perldoc noarch 3.20-4.el7 base 87 k
perl-Pod-Simple noarch 1:3.28-4.el7 base 216 k
perl-Pod-Usage noarch 1.63-3.el7 base 27 k
perl-Scalar-List-Utils x86_64 1.27-248.el7 base 36 k
perl-Socket x86_64 2.010-3.el7 base 49 k
perl-Storable x86_64 2.45-3.el7 base 77 k
perl-Text-ParseWords noarch 3.29-4.el7 base 14 k
perl-Time-HiRes x86_64 4:1.9725-3.el7 base 45 k
perl-Time-Local noarch 1.2300-2.el7 base 24 k
perl-constant noarch 1.27-2.el7 base 19 k
perl-libs x86_64 4:5.16.3-286.el7 base 687 k
perl-macros x86_64 4:5.16.3-286.el7 base 43 k
perl-parent noarch 1:0.225-244.el7 base 12 k
perl-podlators noarch 2.5.1-3.el7 base 112 k
perl-threads x86_64 1.87-4.el7 base 49 k
perl-threads-shared x86_64 1.43-6.el7 base 39 k
Updating for dependencies:
glibc x86_64 2.17-106.el7_2.6 updates 3.6 M
glibc-common x86_64 2.17-106.el7_2.6 updates 11 M
Transaction Summary
================================================================================
Install 3 Packages (+30 Dependent packages)
Upgrade ( 2 Dependent packages)
Total download size: 64 M
Downloading packages:
Delta RPMs disabled because /usr/bin/applydeltarpm not installed.
INFO interface: info:
================================================================================
Package Arch Version Repository Size
================================================================================
Installing:
gcc x86_64 4.8.5-4.el7 base 16 M
kernel-devel x86_64 3.10.0-327.el7 base 11 M
perl x86_64 4:5.16.3-286.el7 base 8.0 M
Installing for dependencies:
cpp x86_64 4.8.5-4.el7 base 5.9 M
glibc-devel x86_64 2.17-106.el7_2.6 updates 1.0 M
glibc-headers x86_64 2.17-106.el7_2.6 updates 662 k
kernel-headers x86_64 3.10.0-327.18.2.el7 updates 3.2 M
perl-Carp noarch 1.26-244.el7 base 19 k
perl-Encode x86_64 2.51-7.el7 base 1.5 M
perl-Exporter noarch 5.68-3.el7 base 28 k
perl-File-Path noarch 2.09-2.el7 base 26 k
perl-File-Temp noarch 0.23.01-3.el7 base 56 k
perl-Filter x86_64 1.49-3.el7 base 76 k
perl-Getopt-Long noarch 2.40-2.el7 base 56 k
perl-HTTP-Tiny noarch 0.033-3.el7 base 38 k
perl-PathTools x86_64 3.40-5.el7 base 82 k
perl-Pod-Escapes noarch 1:1.04-286.el7 base 50 k
perl-Pod-Perldoc noarch 3.20-4.el7 base 87 k
perl-Pod-Simple noarch 1:3.28-4.el7 base 216 k
perl-Pod-Usage noarch 1.63-3.el7 base 27 k
perl-Scalar-List-Utils x86_64 1.27-248.el7 base 36 k
perl-Socket x86_64 2.010-3.el7 base 49 k
perl-Storable x86_64 2.45-3.el7 base 77 k
perl-Text-ParseWords noarch 3.29-4.el7 base 14 k
perl-Time-HiRes x86_64 4:1.9725-3.el7 base 45 k
perl-Time-Local noarch 1.2300-2.el7 base 24 k
perl-constant noarch 1.27-2.el7 base 19 k
perl-libs x86_64 4:5.16.3-286.el7 base 687 k
perl-macros x86_64 4:5.16.3-286.el7 base 43 k
perl-parent noarch 1:0.225-244.el7 base 12 k
perl-podlators noarch 2.5.1-3.el7 base 112 k
perl-threads x86_64 1.87-4.el7 base 49 k
perl-threads-shared x86_64 1.43-6.el7 base 39 k
Updating for dependencies:
glibc x86_64 2.17-106.el7_2.6 updates 3.6 M
glibc-common x86_64 2.17-106.el7_2.6 updates 11 M
Transaction Summary
================================================================================
Install 3 Packages (+30 Dependent packages)
Upgrade ( 2 Dependent packages)
Total download size: 64 M
Downloading packages:
Delta RPMs disabled because /usr/bin/applydeltarpm not installed.

================================================================================
Package Arch Version Repository Size
================================================================================
Installing:
gcc x86_64 4.8.5-4.el7 base 16 M
kernel-devel x86_64 3.10.0-327.el7 base 11 M
perl x86_64 4:5.16.3-286.el7 base 8.0 M
Installing for dependencies:
cpp x86_64 4.8.5-4.el7 base 5.9 M
glibc-devel x86_64 2.17-106.el7_2.6 updates 1.0 M
glibc-headers x86_64 2.17-106.el7_2.6 updates 662 k
kernel-headers x86_64 3.10.0-327.18.2.el7 updates 3.2 M
perl-Carp noarch 1.26-244.el7 base 19 k
perl-Encode x86_64 2.51-7.el7 base 1.5 M
perl-Exporter noarch 5.68-3.el7 base 28 k
perl-File-Path noarch 2.09-2.el7 base 26 k
perl-File-Temp noarch 0.23.01-3.el7 base 56 k
perl-Filter x86_64 1.49-3.el7 base 76 k
perl-Getopt-Long noarch 2.40-2.el7 base 56 k
perl-HTTP-Tiny noarch 0.033-3.el7 base 38 k
perl-PathTools x86_64 3.40-5.el7 base 82 k
perl-Pod-Escapes noarch 1:1.04-286.el7 base 50 k
perl-Pod-Perldoc noarch 3.20-4.el7 base 87 k
perl-Pod-Simple noarch 1:3.28-4.el7 base 216 k
perl-Pod-Usage noarch 1.63-3.el7 base 27 k
perl-Scalar-List-Utils x86_64 1.27-248.el7 base 36 k
perl-Socket x86_64 2.010-3.el7 base 49 k
perl-Storable x86_64 2.45-3.el7 base 77 k
perl-Text-ParseWords noarch 3.29-4.el7 base 14 k
perl-Time-HiRes x86_64 4:1.9725-3.el7 base 45 k
perl-Time-Local noarch 1.2300-2.el7 base 24 k
perl-constant noarch 1.27-2.el7 base 19 k
perl-libs x86_64 4:5.16.3-286.el7 base 687 k
perl-macros x86_64 4:5.16.3-286.el7 base 43 k
perl-parent noarch 1:0.225-244.el7 base 12 k
perl-podlators noarch 2.5.1-3.el7 base 112 k
perl-threads x86_64 1.87-4.el7 base 49 k
perl-threads-shared x86_64 1.43-6.el7 base 39 k
Updating for dependencies:
glibc x86_64 2.17-106.el7_2.6 updates 3.6 M
glibc-common x86_64 2.17-106.el7_2.6 updates 11 M
Transaction Summary
================================================================================
Install 3 Packages (+30 Dependent packages)
Upgrade ( 2 Dependent packages)
Total download size: 64 M
Downloading packages:
Delta RPMs disabled because /usr/bin/applydeltarpm not installed.
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stdout: Public key for glibc-2.17-106.el7_2.6.x86_64.rpm is not installed
INFO interface: info: Public key for glibc-2.17-106.el7_2.6.x86_64.rpm is not installed
Public key for glibc-2.17-106.el7_2.6.x86_64.rpm is not installed
DEBUG ssh: stderr: warning: /var/cache/yum/x86_64/7/updates/packages/glibc-2.17-106.el7_2.6.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID f4a80eb5: NOKEY
INFO interface: info: warning: /var/cache/yum/x86_64/7/updates/packages/glibc-2.17-106.el7_2.6.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID f4a80eb5: NOKEY
warning: /var/cache/yum/x86_64/7/updates/packages/glibc-2.17-106.el7_2.6.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID f4a80eb5: NOKEY
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stdout: Public key for cpp-4.8.5-4.el7.x86_64.rpm is not installed
INFO interface: info: Public key for cpp-4.8.5-4.el7.x86_64.rpm is not installed
Public key for cpp-4.8.5-4.el7.x86_64.rpm is not installed
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stdout: --------------------------------------------------------------------------------
Total 1.2 MB/s | 64 MB 00:53
Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
INFO interface: info: --------------------------------------------------------------------------------
Total 1.2 MB/s | 64 MB 00:53
Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
--------------------------------------------------------------------------------
Total 1.2 MB/s | 64 MB 00:53
Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
DEBUG ssh: stderr: Importing GPG key 0xF4A80EB5:
Userid : "CentOS-7 Key (CentOS 7 Official Signing Key) <[email protected]>"
Fingerprint: 6341 ab27 53d7 8a78 a7c2 7bb1 24c6 a8a7 f4a8 0eb5
Package : centos-release-7-2.1511.el7.centos.2.10.x86_64 (@anaconda)
From : /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
INFO interface: info: Importing GPG key 0xF4A80EB5:
Userid : "CentOS-7 Key (CentOS 7 Official Signing Key) <[email protected]>"
Fingerprint: 6341 ab27 53d7 8a78 a7c2 7bb1 24c6 a8a7 f4a8 0eb5
Package : centos-release-7-2.1511.el7.centos.2.10.x86_64 (@anaconda)
From : /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
Importing GPG key 0xF4A80EB5:
Userid : "CentOS-7 Key (CentOS 7 Official Signing Key) <[email protected]>"
Fingerprint: 6341 ab27 53d7 8a78 a7c2 7bb1 24c6 a8a7 f4a8 0eb5
Package : centos-release-7-2.1511.el7.centos.2.10.x86_64 (@anaconda)
From : /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
DEBUG ssh: stdout: Running transaction check
INFO interface: info: Running transaction check
Running transaction check
DEBUG ssh: stdout: Running transaction test
INFO interface: info: Running transaction test
Running transaction test
DEBUG ssh: stdout: Transaction test succeeded
Running transaction
INFO interface: info: Transaction test succeeded
Running transaction
Transaction test succeeded
Running transaction
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stdout: Updating : glibc-2.17-106.el7_2.6.x86_64 1/37
INFO interface: info: Updating : glibc-2.17-106.el7_2.6.x86_64 1/37
 Updating : glibc-2.17-106.el7_2.6.x86_64 1/37DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stdout:
Updating : glibc-common-2.17-106.el7_2.6.x86_64 2/37
INFO interface: info:
Updating : glibc-common-2.17-106.el7_2.6.x86_64 2/37

Updating : glibc-common-2.17-106.el7_2.6.x86_64 2/37DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stdout:
Installing : 1:perl-parent-0.225-244.el7.noarch 3/37
INFO interface: info:
Installing : 1:perl-parent-0.225-244.el7.noarch 3/37

Installing : 1:perl-parent-0.225-244.el7.noarch 3/37DEBUG ssh: stdout:
Installing : perl-HTTP-Tiny-0.033-3.el7.noarch 4/37
INFO interface: info:
Installing : perl-HTTP-Tiny-0.033-3.el7.noarch 4/37

Installing : perl-HTTP-Tiny-0.033-3.el7.noarch 4/37DEBUG ssh: stdout:
Installing : perl-Pod-Perldoc-3.20-4.el7.noarch 5/37
INFO interface: info:
Installing : perl-Pod-Perldoc-3.20-4.el7.noarch 5/37

Installing : perl-Pod-Perldoc-3.20-4.el7.noarch 5/37DEBUG ssh: stdout:
Installing : perl-podlators-2.5.1-3.el7.noarch 6/37
INFO interface: info:
Installing : perl-podlators-2.5.1-3.el7.noarch 6/37

Installing : perl-podlators-2.5.1-3.el7.noarch 6/37DEBUG ssh: stdout:
Installing : 1:perl-Pod-Escapes-1.04-286.el7.noarch 7/37
INFO interface: info:
Installing : 1:perl-Pod-Escapes-1.04-286.el7.noarch 7/37

Installing : 1:perl-Pod-Escapes-1.04-286.el7.noarch 7/37DEBUG ssh: stdout:
Installing : perl-Pod-Usage-1.63-3.el7.noarch 8/37
INFO interface: info:
Installing : perl-Pod-Usage-1.63-3.el7.noarch 8/37

Installing : perl-Pod-Usage-1.63-3.el7.noarch 8/37DEBUG ssh: stdout:
Installing : perl-Encode-2.51-7.el7.x86_64 9/37
INFO interface: info:
Installing : perl-Encode-2.51-7.el7.x86_64 9/37

Installing : perl-Encode-2.51-7.el7.x86_64 9/37DEBUG ssh: stdout:
Installing : perl-Text-ParseWords-3.29-4.el7.noarch 10/37
INFO interface: info:
Installing : perl-Text-ParseWords-3.29-4.el7.noarch 10/37

Installing : perl-Text-ParseWords-3.29-4.el7.noarch 10/37DEBUG ssh: stdout:
Installing : 4:perl-libs-5.16.3-286.el7.x86_64 11/37
INFO interface: info:
Installing : 4:perl-libs-5.16.3-286.el7.x86_64 11/37

Installing : 4:perl-libs-5.16.3-286.el7.x86_64 11/37DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stdout:
Installing : 4:perl-macros-5.16.3-286.el7.x86_64 12/37
INFO interface: info:
Installing : 4:perl-macros-5.16.3-286.el7.x86_64 12/37

Installing : 4:perl-macros-5.16.3-286.el7.x86_64 12/37DEBUG ssh: stdout:
Installing : perl-Storable-2.45-3.el7.x86_64 13/37
INFO interface: info:
Installing : perl-Storable-2.45-3.el7.x86_64 13/37

Installing : perl-Storable-2.45-3.el7.x86_64 13/37DEBUG ssh: stdout:
Installing : perl-Exporter-5.68-3.el7.noarch 14/37
INFO interface: info:
Installing : perl-Exporter-5.68-3.el7.noarch 14/37

Installing : perl-Exporter-5.68-3.el7.noarch 14/37DEBUG ssh: stdout:
Installing : perl-constant-1.27-2.el7.noarch 15/37
INFO interface: info:
Installing : perl-constant-1.27-2.el7.noarch 15/37

Installing : perl-constant-1.27-2.el7.noarch 15/37DEBUG ssh: stdout:
Installing : perl-Time-Local-1.2300-2.el7.noarch 16/37
INFO interface: info:
Installing : perl-Time-Local-1.2300-2.el7.noarch 16/37

Installing : perl-Time-Local-1.2300-2.el7.noarch 16/37DEBUG ssh: stdout:
Installing : perl-Socket-2.010-3.el7.x86_64 17/37
INFO interface: info:
Installing : perl-Socket-2.010-3.el7.x86_64 17/37

Installing : perl-Socket-2.010-3.el7.x86_64 17/37DEBUG ssh: stdout:
Installing : perl-Carp-1.26-244.el7.noarch 18/37
INFO interface: info:
Installing : perl-Carp-1.26-244.el7.noarch 18/37

Installing : perl-Carp-1.26-244.el7.noarch 18/37DEBUG ssh: stdout:
Installing : 4:perl-Time-HiRes-1.9725-3.el7.x86_64 19/37
INFO interface: info:
Installing : 4:perl-Time-HiRes-1.9725-3.el7.x86_64 19/37

Installing : 4:perl-Time-HiRes-1.9725-3.el7.x86_64 19/37DEBUG ssh: stdout:
Installing : perl-PathTools-3.40-5.el7.x86_64 20/37
INFO interface: info:
Installing : perl-PathTools-3.40-5.el7.x86_64 20/37

Installing : perl-PathTools-3.40-5.el7.x86_64 20/37DEBUG ssh: stdout:
Installing : perl-Scalar-List-Utils-1.27-248.el7.x86_64 21/37
INFO interface: info:
Installing : perl-Scalar-List-Utils-1.27-248.el7.x86_64 21/37

Installing : perl-Scalar-List-Utils-1.27-248.el7.x86_64 21/37DEBUG ssh: stdout:
Installing : perl-File-Temp-0.23.01-3.el7.noarch 22/37
INFO interface: info:
Installing : perl-File-Temp-0.23.01-3.el7.noarch 22/37

Installing : perl-File-Temp-0.23.01-3.el7.noarch 22/37DEBUG ssh: stdout:
Installing : perl-File-Path-2.09-2.el7.noarch 23/37
INFO interface: info:
Installing : perl-File-Path-2.09-2.el7.noarch 23/37

Installing : perl-File-Path-2.09-2.el7.noarch 23/37DEBUG ssh: stdout:
Installing : perl-threads-shared-1.43-6.el7.x86_64 24/37
INFO interface: info:
Installing : perl-threads-shared-1.43-6.el7.x86_64 24/37

Installing : perl-threads-shared-1.43-6.el7.x86_64 24/37DEBUG ssh: stdout:
Installing : perl-threads-1.87-4.el7.x86_64 25/37
INFO interface: info:
Installing : perl-threads-1.87-4.el7.x86_64 25/37

Installing : perl-threads-1.87-4.el7.x86_64 25/37DEBUG ssh: stdout:
Installing : 1:perl-Pod-Simple-3.28-4.el7.noarch 26/37
INFO interface: info:
Installing : 1:perl-Pod-Simple-3.28-4.el7.noarch 26/37

Installing : 1:perl-Pod-Simple-3.28-4.el7.noarch 26/37DEBUG ssh: stdout:
Installing : perl-Getopt-Long-2.40-2.el7.noarch 27/37
INFO interface: info:
Installing : perl-Getopt-Long-2.40-2.el7.noarch 27/37

Installing : perl-Getopt-Long-2.40-2.el7.noarch 27/37DEBUG ssh: stdout:
Installing : perl-Filter-1.49-3.el7.x86_64 28/37
INFO interface: info:
Installing : perl-Filter-1.49-3.el7.x86_64 28/37

Installing : perl-Filter-1.49-3.el7.x86_64 28/37DEBUG ssh: stdout:
Installing : 4:perl-5.16.3-286.el7.x86_64 29/37
INFO interface: info:
Installing : 4:perl-5.16.3-286.el7.x86_64 29/37

Installing : 4:perl-5.16.3-286.el7.x86_64 29/37DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stdout:
Installing : cpp-4.8.5-4.el7.x86_64 30/37
INFO interface: info:
Installing : cpp-4.8.5-4.el7.x86_64 30/37

Installing : cpp-4.8.5-4.el7.x86_64 30/37DEBUG ssh: stdout:
Installing : kernel-headers-3.10.0-327.18.2.el7.x86_64 31/37
INFO interface: info:
Installing : kernel-headers-3.10.0-327.18.2.el7.x86_64 31/37

Installing : kernel-headers-3.10.0-327.18.2.el7.x86_64 31/37DEBUG ssh: stdout:
Installing : glibc-headers-2.17-106.el7_2.6.x86_64 32/37
INFO interface: info:
Installing : glibc-headers-2.17-106.el7_2.6.x86_64 32/37

Installing : glibc-headers-2.17-106.el7_2.6.x86_64 32/37DEBUG ssh: stdout:
Installing : glibc-devel-2.17-106.el7_2.6.x86_64 33/37
INFO interface: info:
Installing : glibc-devel-2.17-106.el7_2.6.x86_64 33/37

Installing : glibc-devel-2.17-106.el7_2.6.x86_64 33/37DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stdout:
Installing : gcc-4.8.5-4.el7.x86_64 34/37
INFO interface: info:
Installing : gcc-4.8.5-4.el7.x86_64 34/37

Installing : gcc-4.8.5-4.el7.x86_64 34/37DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stdout:
Installing : kernel-devel-3.10.0-327.el7.x86_64 35/37
INFO interface: info:
Installing : kernel-devel-3.10.0-327.el7.x86_64 35/37

Installing : kernel-devel-3.10.0-327.el7.x86_64 35/37DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stdout:
Cleanup : glibc-2.17-105.el7.x86_64 36/37
INFO interface: info:
Cleanup : glibc-2.17-105.el7.x86_64 36/37

Cleanup : glibc-2.17-105.el7.x86_64 36/37DEBUG ssh: stdout:
Cleanup : glibc-common-2.17-105.el7.x86_64 37/37
INFO interface: info:
Cleanup : glibc-common-2.17-105.el7.x86_64 37/37

Cleanup : glibc-common-2.17-105.el7.x86_64 37/37DEBUG ssh: stdout:
Verifying : glibc-common-2.17-106.el7_2.6.x86_64 1/37
INFO interface: info:
Verifying : glibc-common-2.17-106.el7_2.6.x86_64 1/37

Verifying : glibc-common-2.17-106.el7_2.6.x86_64 1/37DEBUG ssh: stdout:
Verifying : gcc-4.8.5-4.el7.x86_64 2/37
INFO interface: info:
Verifying : gcc-4.8.5-4.el7.x86_64 2/37

Verifying : gcc-4.8.5-4.el7.x86_64 2/37DEBUG ssh: stdout:
Verifying : perl-HTTP-Tiny-0.033-3.el7.noarch 3/37
INFO interface: info:
Verifying : perl-HTTP-Tiny-0.033-3.el7.noarch 3/37

Verifying : perl-HTTP-Tiny-0.033-3.el7.noarch 3/37DEBUG ssh: stdout:
Verifying : perl-threads-shared-1.43-6.el7.x86_64 4/37
INFO interface: info:
Verifying : perl-threads-shared-1.43-6.el7.x86_64 4/37

Verifying : perl-threads-shared-1.43-6.el7.x86_64 4/37DEBUG ssh: stdout:
Verifying : perl-Storable-2.45-3.el7.x86_64 5/37
INFO interface: info:
Verifying : perl-Storable-2.45-3.el7.x86_64 5/37

Verifying : perl-Storable-2.45-3.el7.x86_64 5/37DEBUG ssh: stdout:
Verifying : perl-Exporter-5.68-3.el7.noarch 6/37
INFO interface: info:
Verifying : perl-Exporter-5.68-3.el7.noarch 6/37

Verifying : perl-Exporter-5.68-3.el7.noarch 6/37DEBUG ssh: stdout:
Verifying : perl-constant-1.27-2.el7.noarch 7/37
INFO interface: info:
Verifying : perl-constant-1.27-2.el7.noarch 7/37

Verifying : perl-constant-1.27-2.el7.noarch 7/37DEBUG ssh: stdout:
Verifying : perl-PathTools-3.40-5.el7.x86_64 8/37
INFO interface: info:
Verifying : perl-PathTools-3.40-5.el7.x86_64 8/37

Verifying : perl-PathTools-3.40-5.el7.x86_64 8/37DEBUG ssh: stdout:
Verifying : 4:perl-libs-5.16.3-286.el7.x86_64 9/37
INFO interface: info:
Verifying : 4:perl-libs-5.16.3-286.el7.x86_64 9/37

Verifying : 4:perl-libs-5.16.3-286.el7.x86_64 9/37DEBUG ssh: stdout:
Verifying : 4:perl-macros-5.16.3-286.el7.x86_64 10/37
INFO interface: info:
Verifying : 4:perl-macros-5.16.3-286.el7.x86_64 10/37

Verifying : 4:perl-macros-5.16.3-286.el7.x86_64 10/37DEBUG ssh: stdout:
Verifying : kernel-headers-3.10.0-327.18.2.el7.x86_64 11/37
INFO interface: info:
Verifying : kernel-headers-3.10.0-327.18.2.el7.x86_64 11/37

Verifying : kernel-headers-3.10.0-327.18.2.el7.x86_64 11/37DEBUG ssh: stdout:
Verifying : 1:perl-parent-0.225-244.el7.noarch 12/37
INFO interface: info:
Verifying : 1:perl-parent-0.225-244.el7.noarch 12/37

Verifying : 1:perl-parent-0.225-244.el7.noarch 12/37DEBUG ssh: stdout:
Verifying : 4:perl-5.16.3-286.el7.x86_64 13/37
INFO interface: info:
Verifying : 4:perl-5.16.3-286.el7.x86_64 13/37

Verifying : 4:perl-5.16.3-286.el7.x86_64 13/37DEBUG ssh: stdout:
Verifying : glibc-devel-2.17-106.el7_2.6.x86_64 14/37
INFO interface: info:
Verifying : glibc-devel-2.17-106.el7_2.6.x86_64 14/37

Verifying : glibc-devel-2.17-106.el7_2.6.x86_64 14/37DEBUG ssh: stdout:
Verifying : perl-File-Temp-0.23.01-3.el7.noarch 15/37
INFO interface: info:
Verifying : perl-File-Temp-0.23.01-3.el7.noarch 15/37

Verifying : perl-File-Temp-0.23.01-3.el7.noarch 15/37DEBUG ssh: stdout:
Verifying : 1:perl-Pod-Simple-3.28-4.el7.noarch 16/37
INFO interface: info:
Verifying : 1:perl-Pod-Simple-3.28-4.el7.noarch 16/37

Verifying : 1:perl-Pod-Simple-3.28-4.el7.noarch 16/37DEBUG ssh: stdout:
Verifying : perl-Time-Local-1.2300-2.el7.noarch 17/37
INFO interface: info:
Verifying : perl-Time-Local-1.2300-2.el7.noarch 17/37

Verifying : perl-Time-Local-1.2300-2.el7.noarch 17/37DEBUG ssh: stdout:
Verifying : perl-Pod-Perldoc-3.20-4.el7.noarch 18/37
INFO interface: info:
Verifying : perl-Pod-Perldoc-3.20-4.el7.noarch 18/37

Verifying : perl-Pod-Perldoc-3.20-4.el7.noarch 18/37DEBUG ssh: stdout:
Verifying : perl-Socket-2.010-3.el7.x86_64 19/37
INFO interface: info:
Verifying : perl-Socket-2.010-3.el7.x86_64 19/37

Verifying : perl-Socket-2.010-3.el7.x86_64 19/37DEBUG ssh: stdout:
Verifying : perl-Carp-1.26-244.el7.noarch 20/37
INFO interface: info:
Verifying : perl-Carp-1.26-244.el7.noarch 20/37

Verifying : perl-Carp-1.26-244.el7.noarch 20/37DEBUG ssh: stdout:
Verifying : glibc-headers-2.17-106.el7_2.6.x86_64 21/37
INFO interface: info:
Verifying : glibc-headers-2.17-106.el7_2.6.x86_64 21/37

Verifying : glibc-headers-2.17-106.el7_2.6.x86_64 21/37DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stdout:
Verifying : perl-podlators-2.5.1-3.el7.noarch 22/37
INFO interface: info:
Verifying : perl-podlators-2.5.1-3.el7.noarch 22/37

Verifying : perl-podlators-2.5.1-3.el7.noarch 22/37DEBUG ssh: stdout:
Verifying : 4:perl-Time-HiRes-1.9725-3.el7.x86_64 23/37
INFO interface: info:
Verifying : 4:perl-Time-HiRes-1.9725-3.el7.x86_64 23/37

Verifying : 4:perl-Time-HiRes-1.9725-3.el7.x86_64 23/37DEBUG ssh: stdout:
Verifying : perl-Scalar-List-Utils-1.27-248.el7.x86_64 24/37
INFO interface: info:
Verifying : perl-Scalar-List-Utils-1.27-248.el7.x86_64 24/37

Verifying : perl-Scalar-List-Utils-1.27-248.el7.x86_64 24/37DEBUG ssh: stdout:
Verifying : 1:perl-Pod-Escapes-1.04-286.el7.noarch 25/37
INFO interface: info:
Verifying : 1:perl-Pod-Escapes-1.04-286.el7.noarch 25/37

Verifying : 1:perl-Pod-Escapes-1.04-286.el7.noarch 25/37DEBUG ssh: stdout:
Verifying : perl-Pod-Usage-1.63-3.el7.noarch 26/37
INFO interface: info:
Verifying : perl-Pod-Usage-1.63-3.el7.noarch 26/37

Verifying : perl-Pod-Usage-1.63-3.el7.noarch 26/37DEBUG ssh: stdout:
Verifying : perl-Encode-2.51-7.el7.x86_64 27/37
INFO interface: info:
Verifying : perl-Encode-2.51-7.el7.x86_64 27/37

Verifying : perl-Encode-2.51-7.el7.x86_64 27/37DEBUG ssh: stdout:
Verifying : perl-Getopt-Long-2.40-2.el7.noarch 28/37
INFO interface: info:
Verifying : perl-Getopt-Long-2.40-2.el7.noarch 28/37

Verifying : perl-Getopt-Long-2.40-2.el7.noarch 28/37DEBUG ssh: stdout:
Verifying : kernel-devel-3.10.0-327.el7.x86_64 29/37
INFO interface: info:
Verifying : kernel-devel-3.10.0-327.el7.x86_64 29/37

Verifying : kernel-devel-3.10.0-327.el7.x86_64 29/37DEBUG ssh: stdout:
Verifying : cpp-4.8.5-4.el7.x86_64 30/37
INFO interface: info:
Verifying : cpp-4.8.5-4.el7.x86_64 30/37

Verifying : cpp-4.8.5-4.el7.x86_64 30/37DEBUG ssh: stdout:
Verifying : perl-File-Path-2.09-2.el7.noarch 31/37
INFO interface: info:
Verifying : perl-File-Path-2.09-2.el7.noarch 31/37

Verifying : perl-File-Path-2.09-2.el7.noarch 31/37DEBUG ssh: stdout:
Verifying : glibc-2.17-106.el7_2.6.x86_64 32/37
INFO interface: info:
Verifying : glibc-2.17-106.el7_2.6.x86_64 32/37

Verifying : glibc-2.17-106.el7_2.6.x86_64 32/37DEBUG ssh: stdout:
Verifying : perl-threads-1.87-4.el7.x86_64 33/37
INFO interface: info:
Verifying : perl-threads-1.87-4.el7.x86_64 33/37

Verifying : perl-threads-1.87-4.el7.x86_64 33/37DEBUG ssh: stdout:
Verifying : perl-Filter-1.49-3.el7.x86_64 34/37
INFO interface: info:
Verifying : perl-Filter-1.49-3.el7.x86_64 34/37

Verifying : perl-Filter-1.49-3.el7.x86_64 34/37DEBUG ssh: stdout:
Verifying : perl-Text-ParseWords-3.29-4.el7.noarch 35/37
INFO interface: info:
Verifying : perl-Text-ParseWords-3.29-4.el7.noarch 35/37

Verifying : perl-Text-ParseWords-3.29-4.el7.noarch 35/37DEBUG ssh: stdout:
Verifying : glibc-common-2.17-105.el7.x86_64 36/37
INFO interface: info:
Verifying : glibc-common-2.17-105.el7.x86_64 36/37

Verifying : glibc-common-2.17-105.el7.x86_64 36/37DEBUG ssh: stdout:
Verifying : glibc-2.17-105.el7.x86_64 37/37
INFO interface: info:
Verifying : glibc-2.17-105.el7.x86_64 37/37

Verifying : glibc-2.17-105.el7.x86_64 37/37DEBUG ssh: stdout:
Installed:
gcc.x86_64 0:4.8.5-4.el7 kernel-devel.x86_64 0:3.10.0-327.el7
perl.x86_64 4:5.16.3-286.el7
Dependency Installed:
cpp.x86_64 0:4.8.5-4.el7
glibc-devel.x86_64 0:2.17-106.el7_2.6
glibc-headers.x86_64 0:2.17-106.el7_2.6
kernel-headers.x86_64 0:3.10.0-327.18.2.el7
perl-Carp.noarch 0:1.26-244.el7
perl-Encode.x86_64 0:2.51-7.el7
perl-Exporter.noarch 0:5.68-3.el7
perl-File-Path.noarch 0:2.09-2.el7
perl-File-Temp.noarch 0:0.23.01-3.el7
perl-Filter.x86_64 0:1.49-3.el7
perl-Getopt-Long.noarch 0:2.40-2.el7
perl-HTTP-Tiny.noarch 0:0.033-3.el7
perl-PathTools.x86_64 0:3.40-5.el7
perl-Pod-Escapes.noarch 1:1.04-286.el7
perl-Pod-Perldoc.noarch 0:3.20-4.el7
perl-Pod-Simple.noarch 1:3.28-4.el7
perl-Pod-Usage.noarch 0:1.63-3.el7
perl-Scalar-List-Utils.x86_64 0:1.27-248.el7
perl-Socket.x86_64 0:2.010-3.el7
perl-Storable.x86_64 0:2.45-3.el7
perl-Text-ParseWords.noarch 0:3.29-4.el7
perl-Time-HiRes.x86_64 4:1.9725-3.el7
perl-Time-Local.noarch 0:1.2300-2.el7
perl-constant.noarch 0:1.27-2.el7
perl-libs.x86_64 4:5.16.3-286.el7
perl-macros.x86_64 4:5.16.3-286.el7
perl-parent.noarch 1:0.225-244.el7
perl-podlators.noarch 0:2.5.1-3.el7
perl-threads.x86_64 0:1.87-4.el7
perl-threads-shared.x86_64 0:1.43-6.el7
Dependency Updated:
glibc.x86_64 0:2.17-106.el7_2.6 glibc-common.x86_64 0:2.17-106.el7_2.6
Complete!
INFO interface: info:
Installed:
gcc.x86_64 0:4.8.5-4.el7 kernel-devel.x86_64 0:3.10.0-327.el7
perl.x86_64 4:5.16.3-286.el7
Dependency Installed:
cpp.x86_64 0:4.8.5-4.el7
glibc-devel.x86_64 0:2.17-106.el7_2.6
glibc-headers.x86_64 0:2.17-106.el7_2.6
kernel-headers.x86_64 0:3.10.0-327.18.2.el7
perl-Carp.noarch 0:1.26-244.el7
perl-Encode.x86_64 0:2.51-7.el7
perl-Exporter.noarch 0:5.68-3.el7
perl-File-Path.noarch 0:2.09-2.el7
perl-File-Temp.noarch 0:0.23.01-3.el7
perl-Filter.x86_64 0:1.49-3.el7
perl-Getopt-Long.noarch 0:2.40-2.el7
perl-HTTP-Tiny.noarch 0:0.033-3.el7
perl-PathTools.x86_64 0:3.40-5.el7
perl-Pod-Escapes.noarch 1:1.04-286.el7
perl-Pod-Perldoc.noarch 0:3.20-4.el7
perl-Pod-Simple.noarch 1:3.28-4.el7
perl-Pod-Usage.noarch 0:1.63-3.el7
perl-Scalar-List-Utils.x86_64 0:1.27-248.el7
perl-Socket.x86_64 0:2.010-3.el7
perl-Storable.x86_64 0:2.45-3.el7
perl-Text-ParseWords.noarch 0:3.29-4.el7
perl-Time-HiRes.x86_64 4:1.9725-3.el7
perl-Time-Local.noarch 0:1.2300-2.el7
perl-constant.noarch 0:1.27-2.el7
perl-libs.x86_64 4:5.16.3-286.el7
perl-macros.x86_64 4:5.16.3-286.el7
perl-parent.noarch 1:0.225-244.el7
perl-podlators.noarch 0:2.5.1-3.el7
perl-threads.x86_64 0:1.87-4.el7
perl-threads-shared.x86_64 0:1.43-6.el7
Dependency Updated:
glibc.x86_64 0:2.17-106.el7_2.6 glibc-common.x86_64 0:2.17-106.el7_2.6
Complete!

Installed:
gcc.x86_64 0:4.8.5-4.el7 kernel-devel.x86_64 0:3.10.0-327.el7
perl.x86_64 4:5.16.3-286.el7
Dependency Installed:
cpp.x86_64 0:4.8.5-4.el7
glibc-devel.x86_64 0:2.17-106.el7_2.6
glibc-headers.x86_64 0:2.17-106.el7_2.6
kernel-headers.x86_64 0:3.10.0-327.18.2.el7
perl-Carp.noarch 0:1.26-244.el7
perl-Encode.x86_64 0:2.51-7.el7
perl-Exporter.noarch 0:5.68-3.el7
perl-File-Path.noarch 0:2.09-2.el7
perl-File-Temp.noarch 0:0.23.01-3.el7
perl-Filter.x86_64 0:1.49-3.el7
perl-Getopt-Long.noarch 0:2.40-2.el7
perl-HTTP-Tiny.noarch 0:0.033-3.el7
perl-PathTools.x86_64 0:3.40-5.el7
perl-Pod-Escapes.noarch 1:1.04-286.el7
perl-Pod-Perldoc.noarch 0:3.20-4.el7
perl-Pod-Simple.noarch 1:3.28-4.el7
perl-Pod-Usage.noarch 0:1.63-3.el7
perl-Scalar-List-Utils.x86_64 0:1.27-248.el7
perl-Socket.x86_64 0:2.010-3.el7
perl-Storable.x86_64 0:2.45-3.el7
perl-Text-ParseWords.noarch 0:3.29-4.el7
perl-Time-HiRes.x86_64 4:1.9725-3.el7
perl-Time-Local.noarch 0:1.2300-2.el7
perl-constant.noarch 0:1.27-2.el7
perl-libs.x86_64 4:5.16.3-286.el7
perl-macros.x86_64 4:5.16.3-286.el7
perl-parent.noarch 1:0.225-244.el7
perl-podlators.noarch 0:2.5.1-3.el7
perl-threads.x86_64 0:1.87-4.el7
perl-threads-shared.x86_64 0:1.43-6.el7
Dependency Updated:
glibc.x86_64 0:2.17-106.el7_2.6 glibc-common.x86_64 0:2.17-106.el7_2.6
Complete!
DEBUG ssh: Exit status: 0
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "list", "dvds"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: UUID: 65586dd6-57f2-47f1-8acd-348afe0f8c3d
State: inaccessible
Type: readonly
Location: c:\apps\VIRTUA~1\VBoxGuestAdditions.iso
Storage format: RAW
Capacity: 0 MBytes
Encryption: disabled
UUID: d6bbc734-dc77-45de-a38f-ec79909babc7
State: inaccessible
Type: readonly
Location: c:\Virtual Box Machines\Mac OSX Snow Leopard 10.6.3\BootCD.iso
Storage format: RAW
Capacity: 0 MBytes
Encryption: disabled
UUID: b59ce3dc-a979-4cdf-878e-8578762d8602
State: inaccessible
Type: readonly
Location: c:\Virtual Box Machines\SnowLeopard_10.6.3.ISO
Storage format: RAW
Capacity: 0 MBytes
Encryption: disabled
UUID: e1e8fee7-7ce5-4a0b-87a3-855c6224c4a1
State: inaccessible
Type: readonly
Location: c:\Virtual Box Machines\Win95b.iso
Storage format: RAW
Capacity: 0 MBytes
Encryption: disabled
UUID: e817d105-34fc-460b-b528-8cfdae1e40fe
State: inaccessible
Type: readonly
Location: c:\Virtual Box Machines\Mac OSX Snow Leopard 10.6.3\LegacyBootCD.iso
Storage format: RAW
Capacity: 0 MBytes
Encryption: disabled
UUID: 1457caa7-5352-45fe-a537-4557e4ff8cc7
State: inaccessible
Type: readonly
Location: c:\apps\VirtualBox\VBoxGuestAdditions.iso
Storage format: RAW
Capacity: 0 MBytes
Encryption: disabled
UUID: 20d05173-f7a4-401a-862f-ff9bbac50b91
State: created
Type: readonly
Location: C:\Program Files\Oracle\VirtualBox\VBoxGuestAdditions.iso
Storage format: RAW
Capacity: 55 MBytes
Encryption: disabled
UUID: 78328b1a-2855-4d52-9d61-66b970bc6097
State: inaccessible
Type: readonly
Location: C:\Downloads\ubuntu-14.04.2-server-amd64.iso
Storage format: RAW
Capacity: 0 MBytes
Encryption: disabled
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO interface: info: Copy iso file C:\Program Files\Oracle\VirtualBox\VBoxGuestAdditions.iso into the box /tmp/VBoxGuestAdditions.iso
Copy iso file C:\Program Files\Oracle\VirtualBox\VBoxGuestAdditions.iso into the box /tmp/VBoxGuestAdditions.iso
DEBUG ssh: Uploading: C:\Program Files\Oracle\VirtualBox\VBoxGuestAdditions.iso to /tmp/VBoxGuestAdditions.iso
DEBUG ssh: Re-using SSH connection.
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: mount /tmp/VBoxGuestAdditions.iso -o loop /mnt (sudo=true)
DEBUG ssh: stderr: mount: /dev/loop0 is write-protected, mounting read-only
INFO interface: info: mount: /dev/loop0 is write-protected, mounting read-only
mount: /dev/loop0 is write-protected, mounting read-only
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: /mnt/VBoxLinuxAdditions.run --info (sudo=true)
DEBUG ssh: stdout: Identification: VirtualBox 5.0.22 Guest Additions for Linux
Target directory: install
Uncompressed size: 7816 KB
Compression: none
Date of packaging: Thu Jun 16 13:44:52 CEST 2016
Built with Makeself version 2.1.5 on linux-gnu
Build command was: /mnt/tinderbox/add-5.0/tools/common/makeself/v2.1.5/makeself.sh \
"--nocomp" \
"/mnt/tinderbox/add-5.0/out/linux.x86/release/obj/Additions/Installer/linux/install/" \
"/mnt/tinderbox/add-5.0/out/linux.x86/release/bin/additions/VBoxLinuxAdditions.run" \
"VirtualBox 5.0.22 Guest Additions for Linux" \
"/bin/sh" \
"./install.sh" \
"/mnt/VBoxLinuxAdditions.run 1> /dev/null"
Script run after extraction:
/bin/sh ./install.sh /mnt/VBoxLinuxAdditions.run 1> /dev/null
install will be removed after extraction
DEBUG ssh: Exit status: 0
INFO interface: warn: Installing Virtualbox Guest Additions 5.0.22 - guest version is 5.0.20
Installing Virtualbox Guest Additions 5.0.22 - guest version is 5.0.20
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: /mnt/VBoxLinuxAdditions.run --nox11 (sudo=true)
DEBUG ssh: stdout: Verifying archive integrity...
INFO interface: info: Verifying archive integrity...
Verifying archive integrity...DEBUG ssh: stdout: All good.
INFO interface: info: All good.
 All good.
DEBUG ssh: stdout: Uncompressing VirtualBox 5.0.22 Guest Additions for Linux
INFO interface: info: Uncompressing VirtualBox 5.0.22 Guest Additions for Linux
Uncompressing VirtualBox 5.0.22 Guest Additions for LinuxDEBUG ssh: stdout: .....
INFO interface: info: .....
.....DEBUG ssh: stdout: .
INFO interface: info: .
.DEBUG ssh: stdout: .
INFO interface: info: .
.DEBUG ssh: stdout: .....
INFO interface: info: .....
.....DEBUG ssh: stdout:
INFO interface: info:

DEBUG ssh: stderr: VirtualBox Guest Additions installer
INFO interface: info: VirtualBox Guest Additions installer
VirtualBox Guest Additions installer
DEBUG ssh: stderr: Removing installed version 5.0.20 of VirtualBox Guest Additions...
INFO interface: info: Removing installed version 5.0.20 of VirtualBox Guest Additions...
Removing installed version 5.0.20 of VirtualBox Guest Additions...
DEBUG ssh: stderr: Removing existing VirtualBox non-DKMS kernel modules
INFO interface: info: Removing existing VirtualBox non-DKMS kernel modules
Removing existing VirtualBox non-DKMS kernel modulesDEBUG ssh: stderr: [ OK ]
INFO interface: info: [ OK ]
[ OK ]
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stderr: Copying additional installer modules ...
INFO interface: info: Copying additional installer modules ...
Copying additional installer modules ...
DEBUG ssh: stderr: Installing additional modules ...
INFO interface: info: Installing additional modules ...
Installing additional modules ...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stderr: Removing existing VirtualBox non-DKMS kernel modules
INFO interface: info: Removing existing VirtualBox non-DKMS kernel modules
Removing existing VirtualBox non-DKMS kernel modulesDEBUG ssh: stderr: [ OK ]
Building the VirtualBox Guest Additions kernel modules
INFO interface: info: [ OK ]
Building the VirtualBox Guest Additions kernel modules
[ OK ]
Building the VirtualBox Guest Additions kernel modulesDEBUG ssh: stderr:
Building the main Guest Additions module
INFO interface: info:
Building the main Guest Additions module

Building the main Guest Additions moduleDEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stderr: [ OK ]
Building the shared folder support module
INFO interface: info: [ OK ]
Building the shared folder support module
[ OK ]
Building the shared folder support moduleDEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stderr: [ OK ]
Building the graphics driver module
INFO interface: info: [ OK ]
Building the graphics driver module
[ OK ]
Building the graphics driver moduleDEBUG ssh: stderr: [ OK ]
INFO interface: info: [ OK ]
[ OK ]
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stderr: Doing non-kernel setup of the Guest Additions
INFO interface: info: Doing non-kernel setup of the Guest Additions
Doing non-kernel setup of the Guest AdditionsDEBUG ssh: stderr: [ OK ]
INFO interface: info: [ OK ]
[ OK ]
DEBUG ssh: stderr: You should restart your guest to make sure the new modules are actually used
INFO interface: info: You should restart your guest to make sure the new modules are actually used
You should restart your guest to make sure the new modules are actually used
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: umount /mnt (sudo=true)
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: test -f /tmp/VBoxGuestAdditions.iso && rm /tmp/VBoxGuestAdditions.iso (sudo=false)
DEBUG ssh: Exit status: 0
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "guestproperty", "get", "32a60af2-1934-453d-abf6-c237fc93843a", "/VirtualBox/GuestAdd/Version"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Value: 5.0.22
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: VBoxService --version (sudo=true)
DEBUG ssh: stdout: 5.0.22r108108
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: lsmod | grep vboxsf (sudo=true)
DEBUG ssh: stdout: vboxsf 39741 0
vboxguest 297222 2 vboxsf
DEBUG ssh: Exit status: 0
DEBUG vbguest-machine: Current states for VM 'dockerhost' are : guest_version=5.0.22 : host_version=5.0.22 : running=true
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "guestproperty", "get", "32a60af2-1934-453d-abf6-c237fc93843a", "/VirtualBox/GuestAdd/Version"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Value: 5.0.22
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: VBoxService --version (sudo=true)
DEBUG ssh: stdout: 5.0.22r108108
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: lsmod | grep vboxsf (sudo=true)
DEBUG ssh: stdout: vboxsf 39741 0
vboxguest 297222 2 vboxsf
DEBUG ssh: Exit status: 0
DEBUG vbguest-machine: Current states for VM 'dockerhost' are : guest_version=5.0.22 : host_version=5.0.22 : running=true
DEBUG vbguest-machine: Runlist for state ok is: []
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::CheckGuestAdditions:0x4987830>
INFO interface: output: Checking for guest additions in VM...
INFO interface: output: dockerhost: Checking for guest additions in VM...
 dockerhost: Checking for guest additions in VM...
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "guestproperty", "get", "32a60af2-1934-453d-abf6-c237fc93843a", "/VirtualBox/GuestAdd/Version"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Value: 5.0.22
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO warden: Calling IN action: #<Proc:0x4879458@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling IN action: #<Proc:0x4926030@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling IN action: #<Proc:0x5410b00@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling OUT action: #<Proc:0x5410b00@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling OUT action: #<Proc:0x4926030@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling OUT action: #<Proc:0x4879458@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::CheckGuestAdditions:0x4987830>
INFO warden: Calling OUT action: #<VagrantVbguest::Middleware:0x4987878>
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::Customize:0x49878a8>
INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::WaitForCommunicator:0x49878c0>
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::Customize:0x49878f0>
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::Boot:0x4987908>
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::Customize:0x4987938>
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::SaneDefaults:0x50c2bf0>
INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::SetHostname:0x50c2c08>
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::ForwardPorts:0x50c2c20>
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::NetworkFixIPv6:0x5167ec0>
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::Network:0x51b3748>
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::ClearNetworkInterfaces:0x51b3778>
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::PrepareNFSSettings:0x522eb38>
INFO synced_folders: Invoking synced folder enable: virtualbox
INFO subprocess: Starting process: ["C:\\cygwin64\\bin/cygpath.EXE", "-w", "-l", "-a", "C:/dev/vagrant/workspace/SpringMVCHibernate/shared-data/mysql"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["C:\\cygwin64\\bin/cygpath.EXE", "-w", "-l", "-a", "C:/dev/vagrant/workspace/SpringMVCHibernate/shared-data/postgres/data"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["C:\\cygwin64\\bin/cygpath.EXE", "-w", "-l", "-a", "C:/dev/vagrant/workspace/SpringMVCHibernate/shared-data/tomcat"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["C:\\cygwin64\\bin/cygpath.EXE", "-w", "-l", "-a", "C:/dev/vagrant/workspace/SpringMVCHibernate/shared-data/jenkins"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["C:\\cygwin64\\bin/cygpath.EXE", "-w", "-l", "-a", "C:/dev/vagrant/workspace/SpringMVCHibernate/vagrant-centos-mysql-tomcat/host"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO interface: output: Mounting shared folders...
INFO interface: output: dockerhost: Mounting shared folders...
 dockerhost: Mounting shared folders...
INFO interface: detail: /vagrant => C:/dev/vagrant/workspace/SpringMVCHibernate/vagrant-centos-mysql-tomcat/host
INFO interface: detail: dockerhost: /vagrant => C:/dev/vagrant/workspace/SpringMVCHibernate/vagrant-centos-mysql-tomcat/host
 dockerhost: /vagrant => C:/dev/vagrant/workspace/SpringMVCHibernate/vagrant-centos-mysql-tomcat/host
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: Searching for SSH port: 22
DEBUG virtualbox_5_0: read_forward_ports: uuid=32a60af2-1934-453d-abf6-c237fc93843a active_only=false
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: - [1, "ssh", 2222, 22]
DEBUG virtualbox_5_0: - [1, "tcp3306", 3306, 3306]
DEBUG virtualbox_5_0: - [1, "tcp50000", 50000, 50000]
DEBUG virtualbox_5_0: - [1, "tcp5432", 5432, 5432]
DEBUG virtualbox_5_0: - [1, "tcp8000", 8000, 8000]
DEBUG virtualbox_5_0: - [1, "tcp8080", 8080, 8080]
DEBUG virtualbox_5_0: - [1, "tcp9080", 9080, 9080]
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG guest: Searching for cap: mount_virtualbox_shared_folder
DEBUG guest: Checking in: redhat
DEBUG guest: Checking in: linux
DEBUG guest: Found cap: mount_virtualbox_shared_folder in linux
INFO guest: Execute capability: mount_virtualbox_shared_folder [#<Vagrant::Machine: dockerhost (VagrantPlugins::ProviderVirtualBox::Provider)>, "vagrant", "/vagrant", {:guestpath=>"/vagrant", :hostpath=>"C:/dev/vagrant/workspace/SpringMVCHibernate/vagrant-centos-mysql-tomcat/host", :disabled=>false, :__vagrantfile=>true, :owner=>"vagrant", :group=>"vagrant"}] (redhat)
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG guest: Searching for cap: shell_expand_guest_path
DEBUG guest: Checking in: redhat
DEBUG guest: Checking in: linux
DEBUG guest: Found cap: shell_expand_guest_path in linux
INFO guest: Execute capability: shell_expand_guest_path [#<Vagrant::Machine: dockerhost (VagrantPlugins::ProviderVirtualBox::Provider)>, "/vagrant"] (redhat)
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo; printf /vagrant (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG ssh: stdout:
/vagrant
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: mkdir -p /vagrant (sudo=true)
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: mount -t vboxsf -o uid=`id -u vagrant`,gid=`getent group vagrant | cut -d: -f3` vagrant /vagrant (sudo=true)
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: chown `id -u vagrant`:`getent group vagrant | cut -d: -f3` /vagrant (sudo=true)
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: if command -v /sbin/init &>/dev/null && /sbin/init --version | grep upstart &>/dev/null; then
/sbin/initctl emit --no-wait vagrant-mounted MOUNTPOINT='/vagrant'
fi
(sudo=true)
DEBUG ssh: stderr: /sbin/init: unrecognized option '--version'
DEBUG ssh: Exit status: 0
INFO interface: detail: /home/vagrant/workspace/shared-data/mysql => C:/dev/vagrant/workspace/SpringMVCHibernate/shared-data/mysql
INFO interface: detail: dockerhost: /home/vagrant/workspace/shared-data/mysql => C:/dev/vagrant/workspace/SpringMVCHibernate/shared-data/mysql
 dockerhost: /home/vagrant/workspace/shared-data/mysql => C:/dev/vagrant/workspace/SpringMVCHibernate/shared-data/mysql
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: Searching for SSH port: 22
DEBUG virtualbox_5_0: read_forward_ports: uuid=32a60af2-1934-453d-abf6-c237fc93843a active_only=false
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: - [1, "ssh", 2222, 22]
DEBUG virtualbox_5_0: - [1, "tcp3306", 3306, 3306]
DEBUG virtualbox_5_0: - [1, "tcp50000", 50000, 50000]
DEBUG virtualbox_5_0: - [1, "tcp5432", 5432, 5432]
DEBUG virtualbox_5_0: - [1, "tcp8000", 8000, 8000]
DEBUG virtualbox_5_0: - [1, "tcp8080", 8080, 8080]
DEBUG virtualbox_5_0: - [1, "tcp9080", 9080, 9080]
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG guest: Searching for cap: mount_virtualbox_shared_folder
DEBUG guest: Checking in: redhat
DEBUG guest: Checking in: linux
DEBUG guest: Found cap: mount_virtualbox_shared_folder in linux
INFO guest: Execute capability: mount_virtualbox_shared_folder [#<Vagrant::Machine: dockerhost (VagrantPlugins::ProviderVirtualBox::Provider)>, "home_vagrant_workspace_shared-data_mysql", "/home/vagrant/workspace/shared-data/mysql", {:guestpath=>"/home/vagrant/workspace/shared-data/mysql", :hostpath=>"C:/dev/vagrant/workspace/SpringMVCHibernate/shared-data/mysql", :disabled=>false, :__vagrantfile=>true, :owner=>"vagrant", :group=>"vagrant"}] (redhat)
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG guest: Searching for cap: shell_expand_guest_path
DEBUG guest: Checking in: redhat
DEBUG guest: Checking in: linux
DEBUG guest: Found cap: shell_expand_guest_path in linux
INFO guest: Execute capability: shell_expand_guest_path [#<Vagrant::Machine: dockerhost (VagrantPlugins::ProviderVirtualBox::Provider)>, "/home/vagrant/workspace/shared-data/mysql"] (redhat)
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo; printf /home/vagrant/workspace/shared-data/mysql (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG ssh: stdout:
/home/vagrant/workspace/shared-data/mysql
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: mkdir -p /home/vagrant/workspace/shared-data/mysql (sudo=true)
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: mount -t vboxsf -o uid=`id -u vagrant`,gid=`getent group vagrant | cut -d: -f3` home_vagrant_workspace_shared-data_mysql /home/vagrant/workspace/shared-data/mysql (sudo=true)
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: chown `id -u vagrant`:`getent group vagrant | cut -d: -f3` /home/vagrant/workspace/shared-data/mysql (sudo=true)
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: if command -v /sbin/init &>/dev/null && /sbin/init --version | grep upstart &>/dev/null; then
/sbin/initctl emit --no-wait vagrant-mounted MOUNTPOINT='/home/vagrant/workspace/shared-data/mysql'
fi
(sudo=true)
DEBUG ssh: stderr: /sbin/init: unrecognized option '--version'
DEBUG ssh: Exit status: 0
INFO interface: detail: /home/vagrant/workspace/shared-data/tomcat => C:/dev/vagrant/workspace/SpringMVCHibernate/shared-data/tomcat
INFO interface: detail: dockerhost: /home/vagrant/workspace/shared-data/tomcat => C:/dev/vagrant/workspace/SpringMVCHibernate/shared-data/tomcat
 dockerhost: /home/vagrant/workspace/shared-data/tomcat => C:/dev/vagrant/workspace/SpringMVCHibernate/shared-data/tomcat
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: Searching for SSH port: 22
DEBUG virtualbox_5_0: read_forward_ports: uuid=32a60af2-1934-453d-abf6-c237fc93843a active_only=false
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: - [1, "ssh", 2222, 22]
DEBUG virtualbox_5_0: - [1, "tcp3306", 3306, 3306]
DEBUG virtualbox_5_0: - [1, "tcp50000", 50000, 50000]
DEBUG virtualbox_5_0: - [1, "tcp5432", 5432, 5432]
DEBUG virtualbox_5_0: - [1, "tcp8000", 8000, 8000]
DEBUG virtualbox_5_0: - [1, "tcp8080", 8080, 8080]
DEBUG virtualbox_5_0: - [1, "tcp9080", 9080, 9080]
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG guest: Searching for cap: mount_virtualbox_shared_folder
DEBUG guest: Checking in: redhat
DEBUG guest: Checking in: linux
DEBUG guest: Found cap: mount_virtualbox_shared_folder in linux
INFO guest: Execute capability: mount_virtualbox_shared_folder [#<Vagrant::Machine: dockerhost (VagrantPlugins::ProviderVirtualBox::Provider)>, "home_vagrant_workspace_shared-data_tomcat", "/home/vagrant/workspace/shared-data/tomcat", {:guestpath=>"/home/vagrant/workspace/shared-data/tomcat", :hostpath=>"C:/dev/vagrant/workspace/SpringMVCHibernate/shared-data/tomcat", :disabled=>false, :__vagrantfile=>true, :owner=>"vagrant", :group=>"vagrant"}] (redhat)
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG guest: Searching for cap: shell_expand_guest_path
DEBUG guest: Checking in: redhat
DEBUG guest: Checking in: linux
DEBUG guest: Found cap: shell_expand_guest_path in linux
INFO guest: Execute capability: shell_expand_guest_path [#<Vagrant::Machine: dockerhost (VagrantPlugins::ProviderVirtualBox::Provider)>, "/home/vagrant/workspace/shared-data/tomcat"] (redhat)
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo; printf /home/vagrant/workspace/shared-data/tomcat (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG ssh: stdout:
/home/vagrant/workspace/shared-data/tomcat
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: mkdir -p /home/vagrant/workspace/shared-data/tomcat (sudo=true)
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: mount -t vboxsf -o uid=`id -u vagrant`,gid=`getent group vagrant | cut -d: -f3` home_vagrant_workspace_shared-data_tomcat /home/vagrant/workspace/shared-data/tomcat (sudo=true)
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: chown `id -u vagrant`:`getent group vagrant | cut -d: -f3` /home/vagrant/workspace/shared-data/tomcat (sudo=true)
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: if command -v /sbin/init &>/dev/null && /sbin/init --version | grep upstart &>/dev/null; then
/sbin/initctl emit --no-wait vagrant-mounted MOUNTPOINT='/home/vagrant/workspace/shared-data/tomcat'
fi
(sudo=true)
DEBUG ssh: stderr: /sbin/init: unrecognized option '--version'
DEBUG ssh: Exit status: 0
INFO interface: detail: /home/vagrant/workspace/shared-data/jenkins => C:/dev/vagrant/workspace/SpringMVCHibernate/shared-data/jenkins
INFO interface: detail: dockerhost: /home/vagrant/workspace/shared-data/jenkins => C:/dev/vagrant/workspace/SpringMVCHibernate/shared-data/jenkins
 dockerhost: /home/vagrant/workspace/shared-data/jenkins => C:/dev/vagrant/workspace/SpringMVCHibernate/shared-data/jenkins
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: Searching for SSH port: 22
DEBUG virtualbox_5_0: read_forward_ports: uuid=32a60af2-1934-453d-abf6-c237fc93843a active_only=false
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: - [1, "ssh", 2222, 22]
DEBUG virtualbox_5_0: - [1, "tcp3306", 3306, 3306]
DEBUG virtualbox_5_0: - [1, "tcp50000", 50000, 50000]
DEBUG virtualbox_5_0: - [1, "tcp5432", 5432, 5432]
DEBUG virtualbox_5_0: - [1, "tcp8000", 8000, 8000]
DEBUG virtualbox_5_0: - [1, "tcp8080", 8080, 8080]
DEBUG virtualbox_5_0: - [1, "tcp9080", 9080, 9080]
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG guest: Searching for cap: mount_virtualbox_shared_folder
DEBUG guest: Checking in: redhat
DEBUG guest: Checking in: linux
DEBUG guest: Found cap: mount_virtualbox_shared_folder in linux
INFO guest: Execute capability: mount_virtualbox_shared_folder [#<Vagrant::Machine: dockerhost (VagrantPlugins::ProviderVirtualBox::Provider)>, "home_vagrant_workspace_shared-data_jenkins", "/home/vagrant/workspace/shared-data/jenkins", {:guestpath=>"/home/vagrant/workspace/shared-data/jenkins", :hostpath=>"C:/dev/vagrant/workspace/SpringMVCHibernate/shared-data/jenkins", :disabled=>false, :__vagrantfile=>true, :owner=>"vagrant", :group=>"vagrant"}] (redhat)
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG guest: Searching for cap: shell_expand_guest_path
DEBUG guest: Checking in: redhat
DEBUG guest: Checking in: linux
DEBUG guest: Found cap: shell_expand_guest_path in linux
INFO guest: Execute capability: shell_expand_guest_path [#<Vagrant::Machine: dockerhost (VagrantPlugins::ProviderVirtualBox::Provider)>, "/home/vagrant/workspace/shared-data/jenkins"] (redhat)
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo; printf /home/vagrant/workspace/shared-data/jenkins (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG ssh: stdout:
/home/vagrant/workspace/shared-data/jenkins
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: mkdir -p /home/vagrant/workspace/shared-data/jenkins (sudo=true)
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: mount -t vboxsf -o uid=`id -u vagrant`,gid=`getent group vagrant | cut -d: -f3` home_vagrant_workspace_shared-data_jenkins /home/vagrant/workspace/shared-data/jenkins (sudo=true)
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: chown `id -u vagrant`:`getent group vagrant | cut -d: -f3` /home/vagrant/workspace/shared-data/jenkins (sudo=true)
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: if command -v /sbin/init &>/dev/null && /sbin/init --version | grep upstart &>/dev/null; then
/sbin/initctl emit --no-wait vagrant-mounted MOUNTPOINT='/home/vagrant/workspace/shared-data/jenkins'
fi
(sudo=true)
DEBUG ssh: stderr: /sbin/init: unrecognized option '--version'
DEBUG ssh: Exit status: 0
INFO interface: detail: /home/vagrant/workspace/shared-data/postgres/data => C:/dev/vagrant/workspace/SpringMVCHibernate/shared-data/postgres/data
INFO interface: detail: dockerhost: /home/vagrant/workspace/shared-data/postgres/data => C:/dev/vagrant/workspace/SpringMVCHibernate/shared-data/postgres/data
 dockerhost: /home/vagrant/workspace/shared-data/postgres/data => C:/dev/vagrant/workspace/SpringMVCHibernate/shared-data/postgres/data
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: Searching for SSH port: 22
DEBUG virtualbox_5_0: read_forward_ports: uuid=32a60af2-1934-453d-abf6-c237fc93843a active_only=false
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: - [1, "ssh", 2222, 22]
DEBUG virtualbox_5_0: - [1, "tcp3306", 3306, 3306]
DEBUG virtualbox_5_0: - [1, "tcp50000", 50000, 50000]
DEBUG virtualbox_5_0: - [1, "tcp5432", 5432, 5432]
DEBUG virtualbox_5_0: - [1, "tcp8000", 8000, 8000]
DEBUG virtualbox_5_0: - [1, "tcp8080", 8080, 8080]
DEBUG virtualbox_5_0: - [1, "tcp9080", 9080, 9080]
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG guest: Searching for cap: mount_virtualbox_shared_folder
DEBUG guest: Checking in: redhat
DEBUG guest: Checking in: linux
DEBUG guest: Found cap: mount_virtualbox_shared_folder in linux
INFO guest: Execute capability: mount_virtualbox_shared_folder [#<Vagrant::Machine: dockerhost (VagrantPlugins::ProviderVirtualBox::Provider)>, "home_vagrant_workspace_shared-data_postgres_data", "/home/vagrant/workspace/shared-data/postgres/data", {:guestpath=>"/home/vagrant/workspace/shared-data/postgres/data", :hostpath=>"C:/dev/vagrant/workspace/SpringMVCHibernate/shared-data/postgres/data", :disabled=>false, :__vagrantfile=>true, :owner=>"vagrant", :group=>"vagrant"}] (redhat)
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG guest: Searching for cap: shell_expand_guest_path
DEBUG guest: Checking in: redhat
DEBUG guest: Checking in: linux
DEBUG guest: Found cap: shell_expand_guest_path in linux
INFO guest: Execute capability: shell_expand_guest_path [#<Vagrant::Machine: dockerhost (VagrantPlugins::ProviderVirtualBox::Provider)>, "/home/vagrant/workspace/shared-data/postgres/data"] (redhat)
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo; printf /home/vagrant/workspace/shared-data/postgres/data (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG ssh: stdout:
/home/vagrant/workspace/shared-data/postgres/data
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: mkdir -p /home/vagrant/workspace/shared-data/postgres/data (sudo=true)
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: mount -t vboxsf -o uid=`id -u vagrant`,gid=`getent group vagrant | cut -d: -f3` home_vagrant_workspace_shared-data_postgres_data /home/vagrant/workspace/shared-data/postgres/data (sudo=true)
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: chown `id -u vagrant`:`getent group vagrant | cut -d: -f3` /home/vagrant/workspace/shared-data/postgres/data (sudo=true)
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: if command -v /sbin/init &>/dev/null && /sbin/init --version | grep upstart &>/dev/null; then
/sbin/initctl emit --no-wait vagrant-mounted MOUNTPOINT='/home/vagrant/workspace/shared-data/postgres/data'
fi
(sudo=true)
DEBUG ssh: stderr: /sbin/init: unrecognized option '--version'
DEBUG ssh: Exit status: 0
INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::SyncedFolders:0x527d0c0>
INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::SyncedFolderCleanup:0x52bb8b0>
INFO warden: Calling OUT action: #<VagrantPlugins::SyncedFolderNFS::ActionCleanup:0x5413368>
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::PrepareNFSValidIds:0x54e5ab8>
INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::HandleForwardedPortCollisions:0x554a318>
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::PrepareForwardedPortCollisionParams:0x554a330>
INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::EnvSet:0x554a348>
INFO provision: Writing provisioning sentinel so we don't provision again
INFO interface: info: Running provisioner: docker...
INFO interface: info: dockerhost: Running provisioner: docker...
 dockerhost: Running provisioner: docker...
INFO environment: Running hook: provisioner_run
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 2 hooks defined.
INFO runner: Running action: provisioner_run #<Method: Vagrant::Action::Builtin::Provision#run_provisioner>
INFO warden: Calling IN action: #<Proc:0x5421dc8@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO docker: Checking for Docker installation...
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG guest: Searching for cap: docker_installed
DEBUG guest: Checking in: redhat
DEBUG guest: Checking in: linux
DEBUG guest: Found cap: docker_installed in linux
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG guest: Searching for cap: docker_installed
DEBUG guest: Checking in: redhat
DEBUG guest: Checking in: linux
DEBUG guest: Found cap: docker_installed in linux
INFO guest: Execute capability: docker_installed [#<Vagrant::Machine: dockerhost (VagrantPlugins::ProviderVirtualBox::Provider)>] (redhat)
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: test -f /usr/bin/docker (sudo=true)
DEBUG ssh: Exit status: 1
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: test -f /usr/local/bin/docker (sudo=true)
DEBUG ssh: Exit status: 1
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: test -f /usr/sbin/docker (sudo=true)
DEBUG ssh: Exit status: 1
INFO interface: detail: Installing Docker onto machine...
INFO interface: detail: dockerhost: Installing Docker onto machine...
 dockerhost: Installing Docker onto machine...
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG guest: Searching for cap: docker_install
DEBUG guest: Checking in: redhat
DEBUG guest: Found cap: docker_install in redhat
INFO guest: Execute capability: docker_install [#<Vagrant::Machine: dockerhost (VagrantPlugins::ProviderVirtualBox::Provider)>] (redhat)
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: yum -q -y update (sudo=true)
DEBUG ssh: stdout: Delta RPMs disabled because /usr/bin/applydeltarpm not installed.
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: yum -q -y remove docker-io* || true (sudo=true)
DEBUG ssh: stderr: No Match for argument: docker-io*
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: curl -sSL https://get.docker.com/ | sh (sudo=true)
DEBUG ssh: stderr: + sh -c 'sleep 3; yum -y -q install docker-engine'
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stdout: Public key for docker-engine-selinux-1.11.2-1.el7.centos.noarch.rpm is not installed
DEBUG ssh: stderr: warning: /var/cache/yum/x86_64/7/docker-main-repo/packages/docker-engine-selinux-1.11.2-1.el7.centos.noarch.rpm: Header V4 RSA/SHA512 Signature, key ID 2c52609d: NOKEY
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stderr: Importing GPG key 0x2C52609D:
Userid : "Docker Release Tool (releasedocker) <[email protected]>"
Fingerprint: 5811 8e89 f3a9 1289 7c07 0adb f762 2157 2c52 609d
From : https://yum.dockerproject.org/gpg
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stdout: restorecon: lstat(/var/lib/docker) failed: No such file or directory
warning: %post(docker-engine-selinux-1.11.2-1.el7.centos.noarch) scriptlet failed, exit status 255
DEBUG ssh: stderr: Non-fatal POSTIN scriptlet failure in rpm package docker-engine-selinux-1.11.2-1.el7.centos.noarch
DEBUG ssh: stderr:
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stdout:
If you would like to use Docker as a non-root user, you should now consider
adding your user to the "docker" group with something like:
sudo usermod -aG docker your-user
Remember that you will have to log out and back in for this to take effect!
DEBUG ssh: Exit status: 0
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG guest: Searching for cap: flavor
DEBUG guest: Checking in: redhat
DEBUG guest: Found cap: flavor in redhat
INFO guest: Execute capability: flavor [#<Vagrant::Machine: dockerhost (VagrantPlugins::ProviderVirtualBox::Provider)>] (redhat)
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: cat /etc/redhat-release (sudo=true)
DEBUG ssh: stdout: CentOS Linux release 7.2.1511 (Core)
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: systemctl start docker.service (sudo=true)
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: systemctl enable docker.service (sudo=true)
DEBUG ssh: stderr: Created symlink from /etc/systemd/system/multi-user.target.wants/docker.service to /usr/lib/systemd/system/docker.service.
DEBUG ssh: Exit status: 0
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG guest: Searching for cap: docker_installed
DEBUG guest: Checking in: redhat
DEBUG guest: Checking in: linux
DEBUG guest: Found cap: docker_installed in linux
INFO guest: Execute capability: docker_installed [#<Vagrant::Machine: dockerhost (VagrantPlugins::ProviderVirtualBox::Provider)>] (redhat)
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: test -f /usr/bin/docker (sudo=true)
DEBUG ssh: Exit status: 0
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG guest: Searching for cap: docker_configure_vagrant_user
DEBUG guest: Checking in: redhat
DEBUG guest: Checking in: linux
DEBUG guest: Found cap: docker_configure_vagrant_user in linux
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG guest: Searching for cap: docker_configure_vagrant_user
DEBUG guest: Checking in: redhat
DEBUG guest: Checking in: linux
DEBUG guest: Found cap: docker_configure_vagrant_user in linux
INFO guest: Execute capability: docker_configure_vagrant_user [#<Vagrant::Machine: dockerhost (VagrantPlugins::ProviderVirtualBox::Provider)>] (redhat)
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: Searching for SSH port: 22
DEBUG virtualbox_5_0: read_forward_ports: uuid=32a60af2-1934-453d-abf6-c237fc93843a active_only=false
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: - [1, "ssh", 2222, 22]
DEBUG virtualbox_5_0: - [1, "tcp3306", 3306, 3306]
DEBUG virtualbox_5_0: - [1, "tcp50000", 50000, 50000]
DEBUG virtualbox_5_0: - [1, "tcp5432", 5432, 5432]
DEBUG virtualbox_5_0: - [1, "tcp8000", 8000, 8000]
DEBUG virtualbox_5_0: - [1, "tcp8080", 8080, 8080]
DEBUG virtualbox_5_0: - [1, "tcp9080", 9080, 9080]
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: getent group docker (sudo=false)
DEBUG ssh: stdout: docker:x:992:
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: id -Gn | grep docker (sudo=false)
DEBUG ssh: Exit status: 1
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: usermod -a -G docker vagrant (sudo=true)
DEBUG ssh: Exit status: 0
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG guest: Searching for cap: docker_daemon_running
DEBUG guest: Checking in: redhat
DEBUG guest: Checking in: linux
DEBUG guest: Found cap: docker_daemon_running in linux
INFO guest: Execute capability: docker_daemon_running [#<Vagrant::Machine: dockerhost (VagrantPlugins::ProviderVirtualBox::Provider)>] (redhat)
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: test -f /var/run/docker.pid (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG guest: Searching for cap: docker_daemon_running
DEBUG guest: Checking in: redhat
DEBUG guest: Checking in: linux
DEBUG guest: Found cap: docker_daemon_running in linux
INFO guest: Execute capability: docker_daemon_running [#<Vagrant::Machine: dockerhost (VagrantPlugins::ProviderVirtualBox::Provider)>] (redhat)
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: test -f /var/run/docker.pid (sudo=false)
DEBUG ssh: Exit status: 0
INFO warden: Calling OUT action: #<Proc:0x5421dc8@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO interface: info: Running provisioner: clear-ssh (shell)...
INFO interface: info: dockerhost: Running provisioner: clear-ssh (shell)...
 dockerhost: Running provisioner: clear-ssh (shell)...
INFO environment: Running hook: provisioner_run
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 2 hooks defined.
INFO runner: Running action: provisioner_run #<Method: Vagrant::Action::Builtin::Provision#run_provisioner>
INFO warden: Calling IN action: #<Proc:0x4872f78@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: Searching for SSH port: 22
DEBUG virtualbox_5_0: read_forward_ports: uuid=32a60af2-1934-453d-abf6-c237fc93843a active_only=false
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: - [1, "ssh", 2222, 22]
DEBUG virtualbox_5_0: - [1, "tcp3306", 3306, 3306]
DEBUG virtualbox_5_0: - [1, "tcp50000", 50000, 50000]
DEBUG virtualbox_5_0: - [1, "tcp5432", 5432, 5432]
DEBUG virtualbox_5_0: - [1, "tcp8000", 8000, 8000]
DEBUG virtualbox_5_0: - [1, "tcp8080", 8080, 8080]
DEBUG virtualbox_5_0: - [1, "tcp9080", 9080, 9080]
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: chown -R vagrant /tmp/vagrant-shell (sudo=true)
DEBUG ssh: stderr: chown: cannot access ‘/tmp/vagrant-shell’: No such file or directory
DEBUG ssh: Exit status: 1
DEBUG ssh: Uploading: C:/Users/HIGGIN~1/AppData/Local/Temp/vagrant-shell20160623-9808-2wr0az.ps1 to /tmp/vagrant-shell
DEBUG ssh: Re-using SSH connection.
INFO interface: detail: Running: inline script
INFO interface: detail: dockerhost: Running: inline script
 dockerhost: Running: inline script
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: chmod +x '/tmp/vagrant-shell' && /tmp/vagrant-shell (sudo=true)
INFO ssh: SSH connection unexpected closed. Assuming reboot or something.
INFO warden: Calling OUT action: #<Proc:0x4872f78@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO interface: info: Running provisioner: info (shell)...
INFO interface: info: dockerhost: Running provisioner: info (shell)...
 dockerhost: Running provisioner: info (shell)...
INFO environment: Running hook: provisioner_run
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 2 hooks defined.
INFO runner: Running action: provisioner_run #<Method: Vagrant::Action::Builtin::Provision#run_provisioner>
INFO warden: Calling IN action: #<Proc:0x50aa398@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: Searching for SSH port: 22
DEBUG virtualbox_5_0: read_forward_ports: uuid=32a60af2-1934-453d-abf6-c237fc93843a active_only=false
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: - [1, "ssh", 2222, 22]
DEBUG virtualbox_5_0: - [1, "tcp3306", 3306, 3306]
DEBUG virtualbox_5_0: - [1, "tcp50000", 50000, 50000]
DEBUG virtualbox_5_0: - [1, "tcp5432", 5432, 5432]
DEBUG virtualbox_5_0: - [1, "tcp8000", 8000, 8000]
DEBUG virtualbox_5_0: - [1, "tcp8080", 8080, 8080]
DEBUG virtualbox_5_0: - [1, "tcp9080", 9080, 9080]
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: Searching for SSH port: 22
DEBUG virtualbox_5_0: read_forward_ports: uuid=32a60af2-1934-453d-abf6-c237fc93843a active_only=false
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: - [1, "ssh", 2222, 22]
DEBUG virtualbox_5_0: - [1, "tcp3306", 3306, 3306]
DEBUG virtualbox_5_0: - [1, "tcp50000", 50000, 50000]
DEBUG virtualbox_5_0: - [1, "tcp5432", 5432, 5432]
DEBUG virtualbox_5_0: - [1, "tcp8000", 8000, 8000]
DEBUG virtualbox_5_0: - [1, "tcp8080", 8080, 8080]
DEBUG virtualbox_5_0: - [1, "tcp9080", 9080, 9080]
INFO ssh: Attempting SSH connection...
INFO ssh: Attempting to connect to SSH...
INFO ssh: - Host: 127.0.0.1
INFO ssh: - Port: 2222
INFO ssh: - Username: vagrant
INFO ssh: - Password? false
INFO ssh: - Key Path: ["C:/dev/vagrant/workspace/SpringMVCHibernate/vagrant-centos-mysql-tomcat/host/.vagrant/machines/dockerhost/virtualbox/private_key"]
DEBUG ssh: == Net-SSH connection debug-level log START ==
DEBUG ssh: D, [2016-06-23T21:56:09.180869 #9808] DEBUG -- net.ssh.transport.session[22b0f9c]: establishing connection to 127.0.0.1:2222
D, [2016-06-23T21:56:09.181369 #9808] DEBUG -- net.ssh.transport.session[22b0f9c]: connection established
I, [2016-06-23T21:56:09.181369 #9808] INFO -- net.ssh.transport.server_version[2299cc8]: negotiating protocol version
D, [2016-06-23T21:56:09.321869 #9808] DEBUG -- net.ssh.transport.server_version[2299cc8]: remote is `SSH-2.0-OpenSSH_6.6.1'
D, [2016-06-23T21:56:09.322369 #9808] DEBUG -- net.ssh.transport.server_version[2299cc8]: local is `SSH-2.0-Ruby/Net::SSH_3.0.2 i386-mingw32'
D, [2016-06-23T21:56:09.330369 #9808] DEBUG -- socket[22b0750]: read 1640 bytes
D, [2016-06-23T21:56:09.330369 #9808] DEBUG -- socket[22b0750]: received packet nr 0 type 20 len 1636
I, [2016-06-23T21:56:09.330869 #9808] INFO -- net.ssh.transport.algorithms[228acb0]: got KEXINIT from server
I, [2016-06-23T21:56:09.330869 #9808] INFO -- net.ssh.transport.algorithms[228acb0]: sending KEXINIT
D, [2016-06-23T21:56:09.331869 #9808] DEBUG -- socket[22b0750]: queueing packet nr 0 type 20 len 1684
D, [2016-06-23T21:56:09.332369 #9808] DEBUG -- socket[22b0750]: sent 1688 bytes
I, [2016-06-23T21:56:09.332369 #9808] INFO -- net.ssh.transport.algorithms[228acb0]: negotiating algorithms
D, [2016-06-23T21:56:09.332869 #9808] DEBUG -- net.ssh.transport.algorithms[228acb0]: negotiated:
* kex: diffie-hellman-group-exchange-sha1
* host_key: ssh-rsa
* encryption_server: aes128-cbc
* encryption_client: aes128-cbc
* hmac_client: hmac-sha1
* hmac_server: hmac-sha1
* compression_client: none
* compression_server: none
* language_client:
* language_server:
D, [2016-06-23T21:56:09.332869 #9808] DEBUG -- net.ssh.transport.algorithms[228acb0]: exchanging keys
D, [2016-06-23T21:56:09.333369 #9808] DEBUG -- socket[22b0750]: queueing packet nr 1 type 34 len 20
D, [2016-06-23T21:56:09.333869 #9808] DEBUG -- socket[22b0750]: sent 24 bytes
D, [2016-06-23T21:56:09.364369 #9808] DEBUG -- socket[22b0750]: read 152 bytes
D, [2016-06-23T21:56:09.364869 #9808] DEBUG -- socket[22b0750]: received packet nr 1 type 31 len 148
D, [2016-06-23T21:56:09.375869 #9808] DEBUG -- socket[22b0750]: queueing packet nr 2 type 32 len 140
D, [2016-06-23T21:56:09.376369 #9808] DEBUG -- socket[22b0750]: sent 144 bytes
D, [2016-06-23T21:56:09.386369 #9808] DEBUG -- socket[22b0750]: read 720 bytes
D, [2016-06-23T21:56:09.386369 #9808] DEBUG -- socket[22b0750]: received packet nr 2 type 33 len 700
D, [2016-06-23T21:56:09.392369 #9808] DEBUG -- socket[22b0750]: queueing packet nr 3 type 21 len 20
D, [2016-06-23T21:56:09.392869 #9808] DEBUG -- socket[22b0750]: sent 24 bytes
D, [2016-06-23T21:56:09.392869 #9808] DEBUG -- socket[22b0750]: received packet nr 3 type 21 len 12
D, [2016-06-23T21:56:09.393369 #9808] DEBUG -- net.ssh.authentication.session[183e4d8]: beginning authentication of `vagrant'
D, [2016-06-23T21:56:09.393369 #9808] DEBUG -- socket[22b0750]: queueing packet nr 4 type 5 len 28
D, [2016-06-23T21:56:09.393869 #9808] DEBUG -- socket[22b0750]: sent 52 bytes
D, [2016-06-23T21:56:09.403869 #9808] DEBUG -- socket[22b0750]: read 52 bytes
D, [2016-06-23T21:56:09.403869 #9808] DEBUG -- socket[22b0750]: received packet nr 4 type 6 len 28
D, [2016-06-23T21:56:09.404369 #9808] DEBUG -- net.ssh.authentication.session[183e4d8]: trying none
D, [2016-06-23T21:56:09.404869 #9808] DEBUG -- socket[22b0750]: queueing packet nr 5 type 50 len 44
D, [2016-06-23T21:56:09.404869 #9808] DEBUG -- socket[22b0750]: sent 68 bytes
D, [2016-06-23T21:56:09.415369 #9808] DEBUG -- socket[22b0750]: read 68 bytes
D, [2016-06-23T21:56:09.417869 #9808] DEBUG -- socket[22b0750]: received packet nr 5 type 51 len 44
D, [2016-06-23T21:56:09.417869 #9808] DEBUG -- net.ssh.authentication.session[183e4d8]: allowed methods: publickey,password
D, [2016-06-23T21:56:09.418369 #9808] DEBUG -- net.ssh.authentication.methods.none[1835eb0]: none failed
D, [2016-06-23T21:56:09.418369 #9808] DEBUG -- net.ssh.authentication.session[183e4d8]: trying publickey
D, [2016-06-23T21:56:09.419869 #9808] DEBUG -- net.ssh.authentication.agent[181a094]: connecting to ssh-agent
E, [2016-06-23T21:56:09.419869 #9808] ERROR -- net.ssh.authentication.agent[181a094]: could not connect to ssh-agent
D, [2016-06-23T21:56:09.419869 #9808] DEBUG -- net.ssh.authentication.methods.publickey[181a31c]: trying publickey (dc:0b:d4:32:7c:23:99:5a:53:8e:3f:c6:83:b6:91:58)
D, [2016-06-23T21:56:09.420369 #9808] DEBUG -- socket[22b0750]: queueing packet nr 6 type 50 len 348
D, [2016-06-23T21:56:09.420369 #9808] DEBUG -- socket[22b0750]: sent 372 bytes
D, [2016-06-23T21:56:09.430869 #9808] DEBUG -- socket[22b0750]: read 324 bytes
D, [2016-06-23T21:56:09.430869 #9808] DEBUG -- socket[22b0750]: received packet nr 6 type 60 len 300
D, [2016-06-23T21:56:09.443369 #9808] DEBUG -- socket[22b0750]: queueing packet nr 7 type 50 len 620
D, [2016-06-23T21:56:09.443369 #9808] DEBUG -- socket[22b0750]: sent 644 bytes
D, [2016-06-23T21:56:09.463869 #9808] DEBUG -- socket[22b0750]: read 36 bytes
D, [2016-06-23T21:56:09.463869 #9808] DEBUG -- socket[22b0750]: received packet nr 7 type 52 len 12
D, [2016-06-23T21:56:09.464369 #9808] DEBUG -- net.ssh.authentication.methods.publickey[181a31c]: publickey succeeded (dc:0b:d4:32:7c:23:99:5a:53:8e:3f:c6:83:b6:91:58)
DEBUG ssh: == Net-SSH connection debug-level log END ==
INFO ssh: Execute: chown -R vagrant /tmp/vagrant-shell (sudo=true)
DEBUG ssh: Exit status: 0
DEBUG ssh: Uploading: C:/Users/HIGGIN~1/AppData/Local/Temp/vagrant-shell20160623-9808-6h5asq.ps1 to /tmp/vagrant-shell
DEBUG ssh: Re-using SSH connection.
INFO interface: detail: Running: inline script
INFO interface: detail: dockerhost: Running: inline script
 dockerhost: Running: inline script
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: chmod +x '/tmp/vagrant-shell' && /tmp/vagrant-shell (sudo=true)
DEBUG ssh: stdout: Environment information....
INFO interface: info: Environment information....
INFO interface: info: dockerhost: Environment information....
 dockerhost: Environment information....
DEBUG ssh: stdout: \S
Kernel \r on an \m
INFO interface: info: \S
Kernel \r on an \m
INFO interface: info: dockerhost: \S
dockerhost: Kernel \r on an \m
 dockerhost: \S
dockerhost: Kernel \r on an \m
DEBUG ssh: stdout: CentOS Linux release 7.2.1511 (Core)
INFO interface: info: CentOS Linux release 7.2.1511 (Core)
INFO interface: info: dockerhost: CentOS Linux release 7.2.1511 (Core)
 dockerhost: CentOS Linux release 7.2.1511 (Core) 
DEBUG ssh: stdout: NAME="CentOS Linux"
VERSION="7 (Core)"
ID="centos"
ID_LIKE="rhel fedora"
VERSION_ID="7"
PRETTY_NAME="CentOS Linux 7 (Core)"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:centos:centos:7"
HOME_URL="https://www.centos.org/"
BUG_REPORT_URL="https://bugs.centos.org/"
CENTOS_MANTISBT_PROJECT="CentOS-7"
CENTOS_MANTISBT_PROJECT_VERSION="7"
REDHAT_SUPPORT_PRODUCT="centos"
REDHAT_SUPPORT_PRODUCT_VERSION="7"
CentOS Linux release 7.2.1511 (Core)
CentOS Linux release 7.2.1511 (Core)
INFO interface: info: NAME="CentOS Linux"
VERSION="7 (Core)"
ID="centos"
ID_LIKE="rhel fedora"
VERSION_ID="7"
PRETTY_NAME="CentOS Linux 7 (Core)"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:centos:centos:7"
HOME_URL="https://www.centos.org/"
BUG_REPORT_URL="https://bugs.centos.org/"
CENTOS_MANTISBT_PROJECT="CentOS-7"
CENTOS_MANTISBT_PROJECT_VERSION="7"
REDHAT_SUPPORT_PRODUCT="centos"
REDHAT_SUPPORT_PRODUCT_VERSION="7"
CentOS Linux release 7.2.1511 (Core)
CentOS Linux release 7.2.1511 (Core)
INFO interface: info: dockerhost: NAME="CentOS Linux"
dockerhost: VERSION="7 (Core)"
dockerhost: ID="centos"
dockerhost: ID_LIKE="rhel fedora"
dockerhost: VERSION_ID="7"
dockerhost: PRETTY_NAME="CentOS Linux 7 (Core)"
dockerhost: ANSI_COLOR="0;31"
dockerhost: CPE_NAME="cpe:/o:centos:centos:7"
dockerhost: HOME_URL="https://www.centos.org/"
dockerhost: BUG_REPORT_URL="https://bugs.centos.org/"
dockerhost:
dockerhost: CENTOS_MANTISBT_PROJECT="CentOS-7"
dockerhost: CENTOS_MANTISBT_PROJECT_VERSION="7"
dockerhost: REDHAT_SUPPORT_PRODUCT="centos"
dockerhost: REDHAT_SUPPORT_PRODUCT_VERSION="7"
dockerhost:
dockerhost: CentOS Linux release 7.2.1511 (Core)
dockerhost: CentOS Linux release 7.2.1511 (Core)
 dockerhost: NAME="CentOS Linux"
dockerhost: VERSION="7 (Core)"
dockerhost: ID="centos"
dockerhost: ID_LIKE="rhel fedora"
dockerhost: VERSION_ID="7"
dockerhost: PRETTY_NAME="CentOS Linux 7 (Core)"
dockerhost: ANSI_COLOR="0;31"
dockerhost: CPE_NAME="cpe:/o:centos:centos:7"
dockerhost: HOME_URL="https://www.centos.org/"
dockerhost: BUG_REPORT_URL="https://bugs.centos.org/"
dockerhost:
dockerhost: CENTOS_MANTISBT_PROJECT="CentOS-7"
dockerhost: CENTOS_MANTISBT_PROJECT_VERSION="7"
dockerhost: REDHAT_SUPPORT_PRODUCT="centos"
dockerhost: REDHAT_SUPPORT_PRODUCT_VERSION="7"
dockerhost:
dockerhost: CentOS Linux release 7.2.1511 (Core)
dockerhost: CentOS Linux release 7.2.1511 (Core) 
DEBUG ssh: stdout: Linux localhost.localdomain 3.10.0-327.el7.x86_64 #1 SMP Thu Nov 19 22:10:57 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux
INFO interface: info: Linux localhost.localdomain 3.10.0-327.el7.x86_64 #1 SMP Thu Nov 19 22:10:57 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux
INFO interface: info: dockerhost: Linux localhost.localdomain 3.10.0-327.el7.x86_64 #1 SMP Thu Nov 19 22:10:57 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux
 dockerhost: Linux localhost.localdomain 3.10.0-327.el7.x86_64 #1 SMP Thu Nov 19 22:10:57 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux
DEBUG ssh: Exit status: 0
INFO warden: Calling OUT action: #<Proc:0x50aa398@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO interface: info: Running provisioner: shell...
INFO interface: info: dockerhost: Running provisioner: shell...
 dockerhost: Running provisioner: shell...
INFO environment: Running hook: provisioner_run
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 2 hooks defined.
INFO runner: Running action: provisioner_run #<Method: Vagrant::Action::Builtin::Provision#run_provisioner>
INFO warden: Calling IN action: #<Proc:0x53dac68@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: Searching for SSH port: 22
DEBUG virtualbox_5_0: read_forward_ports: uuid=32a60af2-1934-453d-abf6-c237fc93843a active_only=false
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: - [1, "ssh", 2222, 22]
DEBUG virtualbox_5_0: - [1, "tcp3306", 3306, 3306]
DEBUG virtualbox_5_0: - [1, "tcp50000", 50000, 50000]
DEBUG virtualbox_5_0: - [1, "tcp5432", 5432, 5432]
DEBUG virtualbox_5_0: - [1, "tcp8000", 8000, 8000]
DEBUG virtualbox_5_0: - [1, "tcp8080", 8080, 8080]
DEBUG virtualbox_5_0: - [1, "tcp9080", 9080, 9080]
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: chown -R vagrant /tmp/vagrant-shell (sudo=true)
DEBUG ssh: Exit status: 0
DEBUG ssh: Uploading: C:/Users/HIGGIN~1/AppData/Local/Temp/vagrant-shell20160623-9808-y9ui0k.ps1 to /tmp/vagrant-shell
DEBUG ssh: Re-using SSH connection.
INFO interface: detail: Running: inline script
INFO interface: detail: dockerhost: Running: inline script
 dockerhost: Running: inline script
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: chmod +x '/tmp/vagrant-shell' && /tmp/vagrant-shell (sudo=true)
DEBUG ssh: stderr: Note: Forwarding request to 'systemctl enable docker.service'.
INFO interface: info: Note: Forwarding request to 'systemctl enable docker.service'.
INFO interface: info: dockerhost: Note: Forwarding request to 'systemctl enable docker.service'.
 dockerhost: Note: Forwarding request to 'systemctl enable docker.service'.
DEBUG ssh: stdout: Loaded plugins: fastestmirror
INFO interface: info: Loaded plugins: fastestmirror
INFO interface: info: dockerhost: Loaded plugins: fastestmirror
 dockerhost: Loaded plugins: fastestmirror
DEBUG ssh: stdout: Loading mirror speeds from cached hostfile
INFO interface: info: Loading mirror speeds from cached hostfile
INFO interface: info: dockerhost: Loading mirror speeds from cached hostfile
 dockerhost: Loading mirror speeds from cached hostfile
DEBUG ssh: stdout: * base: centos.hyve.com
INFO interface: info: * base: centos.hyve.com
INFO interface: info: dockerhost: * base: centos.hyve.com
 dockerhost: * base: centos.hyve.com
DEBUG ssh: stdout: * extras: centos.hyve.com
* updates: repo.bigstepcloud.com
INFO interface: info: * extras: centos.hyve.com
* updates: repo.bigstepcloud.com
INFO interface: info: dockerhost: * extras: centos.hyve.com
dockerhost: * updates: repo.bigstepcloud.com
 dockerhost: * extras: centos.hyve.com
dockerhost: * updates: repo.bigstepcloud.com
DEBUG ssh: stdout: Resolving Dependencies
--> Running transaction check
---> Package vim-enhanced.x86_64 2:7.4.160-1.el7 will be installed
INFO interface: info: Resolving Dependencies
--> Running transaction check
---> Package vim-enhanced.x86_64 2:7.4.160-1.el7 will be installed
INFO interface: info: dockerhost: Resolving Dependencies
dockerhost: --> Running transaction check
dockerhost: ---> Package vim-enhanced.x86_64 2:7.4.160-1.el7 will be installed
 dockerhost: Resolving Dependencies
dockerhost: --> Running transaction check
dockerhost: ---> Package vim-enhanced.x86_64 2:7.4.160-1.el7 will be installed
DEBUG ssh: stdout: --> Processing Dependency: vim-common = 2:7.4.160-1.el7 for package: 2:vim-enhanced-7.4.160-1.el7.x86_64
INFO interface: info: --> Processing Dependency: vim-common = 2:7.4.160-1.el7 for package: 2:vim-enhanced-7.4.160-1.el7.x86_64
INFO interface: info: dockerhost: --> Processing Dependency: vim-common = 2:7.4.160-1.el7 for package: 2:vim-enhanced-7.4.160-1.el7.x86_64
 dockerhost: --> Processing Dependency: vim-common = 2:7.4.160-1.el7 for package: 2:vim-enhanced-7.4.160-1.el7.x86_64
DEBUG ssh: stdout: --> Processing Dependency: libgpm.so.2()(64bit) for package: 2:vim-enhanced-7.4.160-1.el7.x86_64
INFO interface: info: --> Processing Dependency: libgpm.so.2()(64bit) for package: 2:vim-enhanced-7.4.160-1.el7.x86_64
INFO interface: info: dockerhost: --> Processing Dependency: libgpm.so.2()(64bit) for package: 2:vim-enhanced-7.4.160-1.el7.x86_64
 dockerhost: --> Processing Dependency: libgpm.so.2()(64bit) for package: 2:vim-enhanced-7.4.160-1.el7.x86_64
DEBUG ssh: stdout: --> Running transaction check
---> Package gpm-libs.x86_64 0:1.20.7-5.el7 will be installed
---> Package vim-common.x86_64 2:7.4.160-1.el7 will be installed
--> Processing Dependency: vim-filesystem for package: 2:vim-common-7.4.160-1.el7.x86_64
--> Running transaction check
---> Package vim-filesystem.x86_64 2:7.4.160-1.el7 will be installed
INFO interface: info: --> Running transaction check
---> Package gpm-libs.x86_64 0:1.20.7-5.el7 will be installed
---> Package vim-common.x86_64 2:7.4.160-1.el7 will be installed
--> Processing Dependency: vim-filesystem for package: 2:vim-common-7.4.160-1.el7.x86_64
--> Running transaction check
---> Package vim-filesystem.x86_64 2:7.4.160-1.el7 will be installed
INFO interface: info: dockerhost: --> Running transaction check
dockerhost: ---> Package gpm-libs.x86_64 0:1.20.7-5.el7 will be installed
dockerhost: ---> Package vim-common.x86_64 2:7.4.160-1.el7 will be installed
dockerhost: --> Processing Dependency: vim-filesystem for package: 2:vim-common-7.4.160-1.el7.x86_64
dockerhost: --> Running transaction check
dockerhost: ---> Package vim-filesystem.x86_64 2:7.4.160-1.el7 will be installed
 dockerhost: --> Running transaction check
dockerhost: ---> Package gpm-libs.x86_64 0:1.20.7-5.el7 will be installed
dockerhost: ---> Package vim-common.x86_64 2:7.4.160-1.el7 will be installed
dockerhost: --> Processing Dependency: vim-filesystem for package: 2:vim-common-7.4.160-1.el7.x86_64
dockerhost: --> Running transaction check
dockerhost: ---> Package vim-filesystem.x86_64 2:7.4.160-1.el7 will be installed
DEBUG ssh: stdout: --> Finished Dependency Resolution
INFO interface: info: --> Finished Dependency Resolution
INFO interface: info: dockerhost: --> Finished Dependency Resolution
 dockerhost: --> Finished Dependency Resolution
DEBUG ssh: stdout:
Dependencies Resolved
INFO interface: info:
Dependencies Resolved
INFO interface: info: dockerhost:
dockerhost: Dependencies Resolved
 dockerhost:
dockerhost: Dependencies Resolved
DEBUG ssh: stdout:
================================================================================
Package Arch Version Repository Size
================================================================================
Installing:
vim-enhanced x86_64 2:7.4.160-1.el7 base 1.0 M
Installing for dependencies:
gpm-libs x86_64 1.20.7-5.el7 base 32 k
vim-common x86_64 2:7.4.160-1.el7 base 5.9 M
vim-filesystem x86_64 2:7.4.160-1.el7 base 9.6 k
Transaction Summary
================================================================================
Install 1 Package (+3 Dependent packages)
Total download size: 7.0 M
Installed size: 23 M
Downloading packages:
INFO interface: info:
================================================================================
Package Arch Version Repository Size
================================================================================
Installing:
vim-enhanced x86_64 2:7.4.160-1.el7 base 1.0 M
Installing for dependencies:
gpm-libs x86_64 1.20.7-5.el7 base 32 k
vim-common x86_64 2:7.4.160-1.el7 base 5.9 M
vim-filesystem x86_64 2:7.4.160-1.el7 base 9.6 k
Transaction Summary
================================================================================
Install 1 Package (+3 Dependent packages)
Total download size: 7.0 M
Installed size: 23 M
Downloading packages:
INFO interface: info: dockerhost:
dockerhost: ================================================================================
dockerhost: Package Arch Version Repository Size
dockerhost: ================================================================================
dockerhost: Installing:
dockerhost: vim-enhanced x86_64 2:7.4.160-1.el7 base 1.0 M
dockerhost: Installing for dependencies:
dockerhost: gpm-libs x86_64 1.20.7-5.el7 base 32 k
dockerhost: vim-common x86_64 2:7.4.160-1.el7 base 5.9 M
dockerhost: vim-filesystem x86_64 2:7.4.160-1.el7 base 9.6 k
dockerhost:
dockerhost: Transaction Summary
dockerhost: ================================================================================
dockerhost: Install 1 Package (+3 Dependent packages)
dockerhost:
dockerhost: Total download size: 7.0 M
dockerhost: Installed size: 23 M
dockerhost: Downloading packages:
 dockerhost:
dockerhost: ================================================================================
dockerhost: Package Arch Version Repository Size
dockerhost: ================================================================================
dockerhost: Installing:
dockerhost: vim-enhanced x86_64 2:7.4.160-1.el7 base 1.0 M
dockerhost: Installing for dependencies:
dockerhost: gpm-libs x86_64 1.20.7-5.el7 base 32 k
dockerhost: vim-common x86_64 2:7.4.160-1.el7 base 5.9 M
dockerhost: vim-filesystem x86_64 2:7.4.160-1.el7 base 9.6 k
dockerhost:
dockerhost: Transaction Summary
dockerhost: ================================================================================
dockerhost: Install 1 Package (+3 Dependent packages)
dockerhost:
dockerhost: Total download size: 7.0 M
dockerhost: Installed size: 23 M
dockerhost: Downloading packages:
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stdout: --------------------------------------------------------------------------------
Total 1.2 MB/s | 7.0 MB 00:05
INFO interface: info: --------------------------------------------------------------------------------
Total 1.2 MB/s | 7.0 MB 00:05
INFO interface: info: dockerhost: --------------------------------------------------------------------------------
dockerhost: Total 1.2 MB/s | 7.0 MB 00:05
 dockerhost: --------------------------------------------------------------------------------
dockerhost: Total 1.2 MB/s | 7.0 MB 00:05 
DEBUG ssh: stdout: Running transaction check
INFO interface: info: Running transaction check
INFO interface: info: dockerhost: Running transaction check
 dockerhost: Running transaction check
DEBUG ssh: stdout: Running transaction test
INFO interface: info: Running transaction test
INFO interface: info: dockerhost: Running transaction test
 dockerhost: Running transaction test
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stdout: Transaction test succeeded
INFO interface: info: Transaction test succeeded
INFO interface: info: dockerhost: Transaction test succeeded
 dockerhost: Transaction test succeeded
DEBUG ssh: stdout: Running transaction
INFO interface: info: Running transaction
INFO interface: info: dockerhost: Running transaction
 dockerhost: Running transaction
DEBUG ssh: stdout: Installing : gpm-libs-1.20.7-5.el7.x86_64 1/4
INFO interface: info: Installing : gpm-libs-1.20.7-5.el7.x86_64 1/4
INFO interface: info: dockerhost: Installing : gpm-libs-1.20.7-5.el7.x86_64 1/4
 dockerhost: Installing : gpm-libs-1.20.7-5.el7.x86_64 1/4
DEBUG ssh: stdout:
Installing : 2:vim-filesystem-7.4.160-1.el7.x86_64 2/4
INFO interface: info:
Installing : 2:vim-filesystem-7.4.160-1.el7.x86_64 2/4
INFO interface: info: dockerhost:
dockerhost: Installing : 2:vim-filesystem-7.4.160-1.el7.x86_64 2/4
 dockerhost:
dockerhost: Installing : 2:vim-filesystem-7.4.160-1.el7.x86_64 2/4
DEBUG ssh: stdout:
Installing : 2:vim-common-7.4.160-1.el7.x86_64 3/4
INFO interface: info:
Installing : 2:vim-common-7.4.160-1.el7.x86_64 3/4
INFO interface: info: dockerhost:
dockerhost: Installing : 2:vim-common-7.4.160-1.el7.x86_64 3/4
 dockerhost:
dockerhost: Installing : 2:vim-common-7.4.160-1.el7.x86_64 3/4
DEBUG ssh: stdout:
Installing : 2:vim-enhanced-7.4.160-1.el7.x86_64 4/4
INFO interface: info:
Installing : 2:vim-enhanced-7.4.160-1.el7.x86_64 4/4
INFO interface: info: dockerhost:
dockerhost: Installing : 2:vim-enhanced-7.4.160-1.el7.x86_64 4/4
 dockerhost:
dockerhost: Installing : 2:vim-enhanced-7.4.160-1.el7.x86_64 4/4
DEBUG ssh: stdout:
Verifying : 2:vim-common-7.4.160-1.el7.x86_64 1/4
INFO interface: info:
Verifying : 2:vim-common-7.4.160-1.el7.x86_64 1/4
INFO interface: info: dockerhost:
dockerhost: Verifying : 2:vim-common-7.4.160-1.el7.x86_64 1/4
 dockerhost:
dockerhost: Verifying : 2:vim-common-7.4.160-1.el7.x86_64 1/4
DEBUG ssh: stdout:
Verifying : 2:vim-filesystem-7.4.160-1.el7.x86_64 2/4
INFO interface: info:
Verifying : 2:vim-filesystem-7.4.160-1.el7.x86_64 2/4
INFO interface: info: dockerhost:
dockerhost: Verifying : 2:vim-filesystem-7.4.160-1.el7.x86_64 2/4
 dockerhost:
dockerhost: Verifying : 2:vim-filesystem-7.4.160-1.el7.x86_64 2/4
DEBUG ssh: stdout:
Verifying : gpm-libs-1.20.7-5.el7.x86_64 3/4
INFO interface: info:
Verifying : gpm-libs-1.20.7-5.el7.x86_64 3/4
INFO interface: info: dockerhost:
dockerhost: Verifying : gpm-libs-1.20.7-5.el7.x86_64 3/4
 dockerhost:
dockerhost: Verifying : gpm-libs-1.20.7-5.el7.x86_64 3/4
DEBUG ssh: stdout:
Verifying : 2:vim-enhanced-7.4.160-1.el7.x86_64 4/4
INFO interface: info:
Verifying : 2:vim-enhanced-7.4.160-1.el7.x86_64 4/4
INFO interface: info: dockerhost:
dockerhost: Verifying : 2:vim-enhanced-7.4.160-1.el7.x86_64 4/4
 dockerhost:
dockerhost: Verifying : 2:vim-enhanced-7.4.160-1.el7.x86_64 4/4
DEBUG ssh: stdout:
Installed:
vim-enhanced.x86_64 2:7.4.160-1.el7
Dependency Installed:
gpm-libs.x86_64 0:1.20.7-5.el7 vim-common.x86_64 2:7.4.160-1.el7
vim-filesystem.x86_64 2:7.4.160-1.el7
Complete!
INFO interface: info:
Installed:
vim-enhanced.x86_64 2:7.4.160-1.el7
Dependency Installed:
gpm-libs.x86_64 0:1.20.7-5.el7 vim-common.x86_64 2:7.4.160-1.el7
vim-filesystem.x86_64 2:7.4.160-1.el7
Complete!
INFO interface: info: dockerhost:
dockerhost:
dockerhost: Installed:
dockerhost: vim-enhanced.x86_64 2:7.4.160-1.el7
dockerhost:
dockerhost: Dependency Installed:
dockerhost: gpm-libs.x86_64 0:1.20.7-5.el7 vim-common.x86_64 2:7.4.160-1.el7
dockerhost: vim-filesystem.x86_64 2:7.4.160-1.el7
dockerhost:
dockerhost: Complete!
 dockerhost:
dockerhost:
dockerhost: Installed:
dockerhost: vim-enhanced.x86_64 2:7.4.160-1.el7
dockerhost:
dockerhost: Dependency Installed:
dockerhost: gpm-libs.x86_64 0:1.20.7-5.el7 vim-common.x86_64 2:7.4.160-1.el7
dockerhost: vim-filesystem.x86_64 2:7.4.160-1.el7
dockerhost:
dockerhost: Complete!
DEBUG ssh: Exit status: 0
INFO warden: Calling OUT action: #<Proc:0x53dac68@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::Provision:0x55bba60>
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::ClearForwardedPorts:0x55bba78>
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::SetName:0x5657178>
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::CleanMachineFolder:0x5657190>
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::CheckAccessible:0x56571a8>
INFO warden: Calling OUT action: #<Proc:0x4785918@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::Call:0x4926198>
INFO warden: Calling OUT action: #<Proc:0x481e000@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::Call:0x5410bc0>
INFO warden: Calling OUT action: #<Proc:0x52b3f78@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::Call:0x5516760>
INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::BoxCheckOutdated:0x565cd58>
INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::ConfigValidate:0x565cd88>
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::CheckVirtualbox:0x565cda0>
INFO warden: Calling OUT action: #<Proc:0x5506a88@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::MatchMACAddress:0x5506ab8>
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::DiscardState:0x5506ad0>
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::Import:0x5506b00>
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::PrepareCloneSnapshot:0x55da210>
INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::PrepareClone:0x2aa6b90>
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::Customize:0x2aa6ba8>
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::CheckAccessible:0x2aa6bf0>
INFO warden: Calling OUT action: #<Proc:0x5418ca8@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::Call:0x565ce48>
INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::ConfigValidate:0x565ce90>
INFO warden: Calling OUT action: #<Proc:0x48caff8@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::HandleBox:0x49a6fd0>
INFO warden: Calling OUT action: #<Proc:0x47c9e98@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::Call:0x565ced8>
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::CheckVirtualbox:0x565cef0>
INFO interface: Machine: action ["up", "end", {:target=>:dockerhost}]
INFO environment: Released process lock: machine-action-0aa86a4f03d35d67fd7c0ab0d5559427
DEBUG environment: Attempting to acquire process-lock: dotlock
INFO environment: Acquired process lock: dotlock
INFO environment: Released process lock: dotlock
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
INFO environment: Released process lock: d99e413f5794e16d86976a7615137a85
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x49d3cd0>
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 2 hooks defined.
INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x47e96c8>
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::IsState:0x47b61d0>
DEBUG is_state: Checking if machine state is 'not_created'
DEBUG is_state: -- Machine state: not_created
INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::IsState:0x47b61d0>
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 2 hooks defined.
INFO runner: Running action: machine_action_up #<Vagrant::Action::Warden:0x43b5970>
INFO warden: Calling IN action: #<Proc:0x54fdaa0@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::HandleBox:0x43b5910>
INFO handle_box: Skipping HandleBox because no box is set
INFO warden: Calling IN action: #<VagrantPlugins::DockerProvider::Action::DestroyBuildImage:0x2fe9950>
INFO warden: Calling IN action: #<Proc:0x565d5f8@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x49d3c70>
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 2 hooks defined.
INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x53175d8>
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::IsState:0x5314bc0>
DEBUG is_state: Checking if machine state is 'running'
DEBUG is_state: -- Machine state: not_created
INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::IsState:0x5314bc0>
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 2 hooks defined.
INFO runner: Running action: machine_action_up #<Vagrant::Action::Warden:0x559b498>
INFO warden: Calling IN action: #<Proc:0x486bf58@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x559b3f0>
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 2 hooks defined.
INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x44cc940>
INFO warden: Calling IN action: #<VagrantPlugins::DockerProvider::Action::HasSSH:0x44682f0>
INFO warden: Calling OUT action: #<VagrantPlugins::DockerProvider::Action::HasSSH:0x44682f0>
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 2 hooks defined.
INFO runner: Running action: machine_action_up #<Vagrant::Action::Warden:0x30366f0>
INFO warden: Calling IN action: #<Proc:0x285c6f0@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Message:0x30364b0>
INFO warden: Calling IN action: #<Proc:0x30363c0@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x559b3c0>
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 2 hooks defined.
INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x53ffb20>
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::IsState:0x53f3478>
DEBUG is_state: Checking if machine state is 'not_created'
DEBUG is_state: -- Machine state: not_created
INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::IsState:0x53f3478>
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 2 hooks defined.
INFO runner: Running action: machine_action_up #<Vagrant::Action::Warden:0x511fa70>
INFO warden: Calling IN action: #<Proc:0x50a9858@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling IN action: #<VagrantPlugins::DockerProvider::Action::InitState:0x511f938>
INFO machine: New machine ID: nil
INFO machine: New machine ID: "preparing"
INFO warden: Calling IN action: #<Proc:0x511f7d0@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling IN action: #<VagrantPlugins::DockerProvider::Action::HostMachineBuildDir:0x559b378>
INFO warden: Calling IN action: #<VagrantPlugins::DockerProvider::Action::HostMachineSyncFolders:0x553b5b8>
DEBUG environment: Attempting to acquire process-lock: d99e413f5794e16d86976a7615137a85
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: d99e413f5794e16d86976a7615137a85
INFO interface: output: Syncing folders to the host VM...
INFO interface: output: ==> postgres: Syncing folders to the host VM...
==> postgres: Syncing folders to the host VM...
INFO machine: Calling action: sync_folders on provider VirtualBox (32a60af2-1934-453d-abf6-c237fc93843a)
DEBUG environment: Attempting to acquire process-lock: machine-action-0aa86a4f03d35d67fd7c0ab0d5559427
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-0aa86a4f03d35d67fd7c0ab0d5559427
INFO interface: Machine: action ["sync_folders", "start", {:target=>:dockerhost}]
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 2 hooks defined.
INFO runner: Running action: machine_action_sync_folders #<Vagrant::Action::Builder:0x54f75f0>
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::PrepareNFSValidIds:0x54e7d80>
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "list", "vms"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: "<inaccessible>" {c12c51b4-0c31-4265-b7ea-432e356665bf}
"<inaccessible>" {73535b85-80c4-40eb-a654-40992f721f24}
"<inaccessible>" {c9f8e624-06cc-4ef3-b36d-1538414b0810}
"<inaccessible>" {70920484-bd55-420a-aac5-a1c251753c4c}
"<inaccessible>" {c8e94cd9-b1ed-41ba-b4dd-0eccf5459620}
"<inaccessible>" {57196553-565b-436d-86a9-74f617569a1b}
"<inaccessible>" {97330788-beef-40a8-8f11-e6b180b79e74}
"<inaccessible>" {c2abc7b3-4446-453f-96cc-b0717060fae3}
"<inaccessible>" {4249cbcd-59b9-42ad-a69f-cddc6983b102}
"Cloud1" {60b7fba5-5945-47f9-a4c1-07e80941d348}
"OpenStack HOL" {a70df147-87e8-41b7-b647-f41a625d8972}
"<inaccessible>" {f8b018f6-71d4-4fe0-b492-f4f42b6b85b6}
"<inaccessible>" {fdcd3ab7-b237-4e2b-823d-5fd62c2f70eb}
"<inaccessible>" {48231b57-a405-43f9-b79a-c277bf252553}
"<inaccessible>" {d292d692-7a5f-40ee-83ed-83eb64837b61}
"<inaccessible>" {d26eb7e5-83a0-42f3-b061-9012fd07900c}
"<inaccessible>" {245f288b-2cd4-4253-bd45-db5355a51cd0}
"dockerhost" {32a60af2-1934-453d-abf6-c237fc93843a}
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::SyncedFolders:0x53d1bd8>
INFO synced_folders: SyncedFolders loading from cache: false
INFO synced_folders: Synced Folder Implementation: virtualbox
INFO synced_folders: - 35adf75400: C:/dev/vagrant/workspace/SpringMVCHibernate/vagrant-centos-mysql-tomcat => /var/lib/docker/docker_1466715385_1927
INFO synced_folders: Invoking synced folder prepare for: virtualbox
INFO subprocess: Starting process: ["C:\\cygwin64\\bin/cygpath.EXE", "-w", "-l", "-a", "C:/dev/vagrant/workspace/SpringMVCHibernate/vagrant-centos-mysql-tomcat"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::PrepareNFSSettings:0x52b2328>
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::PrepareNFSSettings:0x52b2328>
INFO synced_folders: Invoking synced folder enable: virtualbox
INFO subprocess: Starting process: ["C:\\cygwin64\\bin/cygpath.EXE", "-w", "-l", "-a", "C:/dev/vagrant/workspace/SpringMVCHibernate/vagrant-centos-mysql-tomcat"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "setextradata", "32a60af2-1934-453d-abf6-c237fc93843a", "VBoxInternal2/SharedFoldersEnableSymlinksCreate/35adf75400", "1"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "sharedfolder", "add", "32a60af2-1934-453d-abf6-c237fc93843a", "--name", "35adf75400", "--hostpath", "\\\\?\\C:\\dev\\vagrant\\workspace\\SpringMVCHibernate\\vagrant-centos-mysql-tomcat", "--transient"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
INFO interface: output: Mounting shared folders...
INFO interface: output: dockerhost: Mounting shared folders...
 dockerhost: Mounting shared folders...
INFO interface: detail: /var/lib/docker/docker_1466715385_1927 => C:/dev/vagrant/workspace/SpringMVCHibernate/vagrant-centos-mysql-tomcat
INFO interface: detail: dockerhost: /var/lib/docker/docker_1466715385_1927 => C:/dev/vagrant/workspace/SpringMVCHibernate/vagrant-centos-mysql-tomcat
 dockerhost: /var/lib/docker/docker_1466715385_1927 => C:/dev/vagrant/workspace/SpringMVCHibernate/vagrant-centos-mysql-tomcat
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
SharedFolderNameTransientMapping1="35adf75400"
SharedFolderPathTransientMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: Searching for SSH port: 22
DEBUG virtualbox_5_0: read_forward_ports: uuid=32a60af2-1934-453d-abf6-c237fc93843a active_only=false
INFO subprocess: Starting process: ["C:/Program Files/Oracle/VirtualBox/VBoxManage.exe", "showvminfo", "32a60af2-1934-453d-abf6-c237fc93843a", "--machinereadable"]
INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="dockerhost"
groups="/"
ostype="Red Hat (64-bit)"
UUID="32a60af2-1934-453d-abf6-c237fc93843a"
CfgFile="c:\\Virtual Box Machines\\dockerhost\\dockerhost.vbox"
SnapFldr="c:\\Virtual Box Machines\\dockerhost\\Snapshots"
LogFldr="c:\\Virtual Box Machines\\dockerhost\\Logs"
hardwareuuid="32a60af2-1934-453d-abf6-c237fc93843a"
memory=512
pagefusion="off"
vram=8
cpuexecutioncap=100
hpet="off"
chipset="piix3"
firmware="BIOS"
cpus=1
pae="on"
longmode="on"
cpuid-portability-level=0
bootmenu="messageandmenu"
boot1="disk"
boot2="dvd"
boot3="none"
boot4="none"
acpi="on"
ioapic="on"
biossystemtimeoffset=0
rtcuseutc="on"
hwvirtex="on"
nestedpaging="on"
largepages="off"
vtxvpid="on"
vtxux="on"
paravirtprovider="default"
VMState="running"
VMStateChangeTime="2016-06-23T20:45:37.893000000"
monitorcount=1
accelerate3d="off"
accelerate2dvideo="off"
teleporterenabled="off"
teleporterport=0
teleporteraddress=""
teleporterpassword=""
tracing-enabled="off"
tracing-allow-vm-access="off"
tracing-config=""
autostart-enabled="off"
autostart-delay=0
defaultfrontend=""
storagecontrollername0="IDE Controller"
storagecontrollertype0="PIIX4"
storagecontrollerinstance0="0"
storagecontrollermaxportcount0="2"
storagecontrollerportcount0="2"
storagecontrollerbootable0="on"
storagecontrollername1="SATA Controller"
storagecontrollertype1="IntelAhci"
storagecontrollerinstance1="0"
storagecontrollermaxportcount1="30"
storagecontrollerportcount1="1"
storagecontrollerbootable1="on"
"IDE Controller-0-0"="none"
"IDE Controller-0-1"="none"
"IDE Controller-1-0"="none"
"IDE Controller-1-1"="none"
"SATA Controller-0-0"="c:\Virtual Box Machines\dockerhost\centos-7.2-x86_64-disk1.vmdk"
"SATA Controller-ImageUUID-0-0"="fa195b53-49b2-4ced-9e69-d4ece400a9da"
natnet1="nat"
macaddress1="080027E27E5E"
cableconnected1="on"
nic1="nat"
nictype1="82540EM"
nicspeed1="0"
mtu="0"
sockSnd="64"
sockRcv="64"
tcpWndSnd="64"
tcpWndRcv="64"
Forwarding(0)="ssh,tcp,127.0.0.1,2222,,22"
Forwarding(1)="tcp3306,tcp,,3306,,3306"
Forwarding(2)="tcp50000,tcp,,50000,,50000"
Forwarding(3)="tcp5432,tcp,,5432,,5432"
Forwarding(4)="tcp8000,tcp,,8000,,8000"
Forwarding(5)="tcp8080,tcp,,8080,,8080"
Forwarding(6)="tcp9080,tcp,,9080,,9080"
nic2="none"
nic3="none"
nic4="none"
nic5="none"
nic6="none"
nic7="none"
nic8="none"
hidpointing="ps2mouse"
hidkeyboard="ps2kbd"
uart1="off"
uart2="off"
uart3="off"
uart4="off"
lpt1="off"
lpt2="off"
audio="none"
clipboard="disabled"
draganddrop="disabled"
SessionName="headless"
VideoMode="720,400,0"@0,0 1
vrde="on"
vrdeport=5940
vrdeports="5940"
vrdeaddress="127.0.0.1"
vrdeauthtype="null"
vrdemulticon="off"
vrdereusecon="off"
vrdevideochannel="off"
vrdeproperty[TCP/Ports]="5940"
vrdeproperty[TCP/Address]="127.0.0.1"
vrdeproperty[VideoChannel/Enabled]=<not set>
vrdeproperty[VideoChannel/Quality]=<not set>
vrdeproperty[VideoChannel/DownscaleProtection]=<not set>
vrdeproperty[Client/DisableDisplay]=<not set>
vrdeproperty[Client/DisableInput]=<not set>
vrdeproperty[Client/DisableAudio]=<not set>
vrdeproperty[Client/DisableUSB]=<not set>
vrdeproperty[Client/DisableClipboard]=<not set>
vrdeproperty[Client/DisableUpstreamAudio]=<not set>
vrdeproperty[Client/DisableRDPDR]=<not set>
vrdeproperty[H3DRedirect/Enabled]=<not set>
vrdeproperty[Security/Method]=<not set>
vrdeproperty[Security/ServerCertificate]=<not set>
vrdeproperty[Security/ServerPrivateKey]=<not set>
vrdeproperty[Security/CACertificate]=<not set>
vrdeproperty[Audio/RateCorrectionMode]=<not set>
vrdeproperty[Audio/LogPath]=<not set>
usb="off"
ehci="off"
xhci="off"
SharedFolderNameMachineMapping1="home_vagrant_workspace_shared-data_mysql"
SharedFolderPathMachineMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\mysql"
SharedFolderNameMachineMapping2="home_vagrant_workspace_shared-data_postgres_data"
SharedFolderPathMachineMapping2="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\postgres\data"
SharedFolderNameMachineMapping3="home_vagrant_workspace_shared-data_tomcat"
SharedFolderPathMachineMapping3="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\tomcat"
SharedFolderNameMachineMapping4="home_vagrant_workspace_shared-data_jenkins"
SharedFolderPathMachineMapping4="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\shared-data\jenkins"
SharedFolderNameMachineMapping5="vagrant"
SharedFolderPathMachineMapping5="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat\host"
SharedFolderNameTransientMapping1="35adf75400"
SharedFolderPathTransientMapping1="\\?\C:\dev\vagrant\workspace\SpringMVCHibernate\vagrant-centos-mysql-tomcat"
VRDEActiveConnection="off"
VRDEClients=0
vcpenabled="off"
vcpscreens=0
vcpfile="c:\Virtual Box Machines\dockerhost\dockerhost.webm"
vcpwidth=1024
vcpheight=768
vcprate=512
vcpfps=25
GuestMemoryBalloon=0
GuestOSType="Linux26_64"
GuestAdditionsRunLevel=2
GuestAdditionsVersion="5.0.20 r106931"
GuestAdditionsFacility_VirtualBox Base Driver=50,1466714752460
GuestAdditionsFacility_VirtualBox System Service=50,1466714759142
GuestAdditionsFacility_Seamless Mode=0,1466714752459
GuestAdditionsFacility_Graphics Mode=0,1466714752459
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
DEBUG virtualbox_5_0: - [1, "ssh", 2222, 22]
DEBUG virtualbox_5_0: - [1, "tcp3306", 3306, 3306]
DEBUG virtualbox_5_0: - [1, "tcp50000", 50000, 50000]
DEBUG virtualbox_5_0: - [1, "tcp5432", 5432, 5432]
DEBUG virtualbox_5_0: - [1, "tcp8000", 8000, 8000]
DEBUG virtualbox_5_0: - [1, "tcp8080", 8080, 8080]
DEBUG virtualbox_5_0: - [1, "tcp9080", 9080, 9080]
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG guest: Searching for cap: mount_virtualbox_shared_folder
DEBUG guest: Checking in: redhat
DEBUG guest: Checking in: linux
DEBUG guest: Found cap: mount_virtualbox_shared_folder in linux
INFO guest: Execute capability: mount_virtualbox_shared_folder [#<Vagrant::Machine: dockerhost (VagrantPlugins::ProviderVirtualBox::Provider)>, "35adf75400", "/var/lib/docker/docker_1466715385_1927", {:guestpath=>"/var/lib/docker/docker_1466715385_1927", :hostpath=>"C:/dev/vagrant/workspace/SpringMVCHibernate/vagrant-centos-mysql-tomcat", :disabled=>false, :__vagrantfile=>true, :docker_guestpath=>"/vagrant", :docker_sfid=>"35adf79acd68e2cbebc3a1c3eb24be59", :docker_host_sfid=>"92acf830-d7d9-4898-9a43-6c0827cfd5e5", :id=>"35adf75400", :virtualbox__transient=>true, :transient=>true, :owner=>"vagrant", :group=>"vagrant"}] (redhat)
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG guest: Searching for cap: shell_expand_guest_path
DEBUG guest: Checking in: redhat
DEBUG guest: Checking in: linux
DEBUG guest: Found cap: shell_expand_guest_path in linux
INFO guest: Execute capability: shell_expand_guest_path [#<Vagrant::Machine: dockerhost (VagrantPlugins::ProviderVirtualBox::Provider)>, "/var/lib/docker/docker_1466715385_1927"] (redhat)
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo; printf /var/lib/docker/docker_1466715385_1927 (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG ssh: stdout:
/var/lib/docker/docker_1466715385_1927
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: mkdir -p /var/lib/docker/docker_1466715385_1927 (sudo=true)
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: mount -t vboxsf -o uid=`id -u vagrant`,gid=`getent group vagrant | cut -d: -f3` 35adf75400 /var/lib/docker/docker_1466715385_1927 (sudo=true)
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: chown `id -u vagrant`:`getent group vagrant | cut -d: -f3` /var/lib/docker/docker_1466715385_1927 (sudo=true)
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: if command -v /sbin/init &>/dev/null && /sbin/init --version | grep upstart &>/dev/null; then
/sbin/initctl emit --no-wait vagrant-mounted MOUNTPOINT='/var/lib/docker/docker_1466715385_1927'
fi
(sudo=true)
DEBUG ssh: stderr: /sbin/init: unrecognized option '--version'
DEBUG ssh: Exit status: 0
INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::SyncedFolders:0x53d1bd8>
INFO warden: Calling OUT action: #<VagrantPlugins::ProviderVirtualBox::Action::PrepareNFSValidIds:0x54e7d80>
INFO interface: Machine: action ["sync_folders", "end", {:target=>:dockerhost}]
INFO environment: Released process lock: machine-action-0aa86a4f03d35d67fd7c0ab0d5559427
DEBUG environment: Attempting to acquire process-lock: dotlock
INFO environment: Acquired process lock: dotlock
INFO environment: Released process lock: dotlock
INFO environment: Released process lock: d99e413f5794e16d86976a7615137a85
INFO warden: Calling IN action: #<VagrantPlugins::DockerProvider::Action::PrepareNFSValidIds:0x5481150>
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo -n "========== VAGRANT DOCKER BEGIN =========="; "docker" "ps" "-a" "-q" "--no-trunc" (sudo=false)
DEBUG ssh: stdout: ========== VAGRANT DOCKER BEGIN ==========
DEBUG ssh: Exit status: 0
INFO warden: Calling IN action: #<VagrantPlugins::SyncedFolderNFS::ActionCleanup:0x53314e0>
DEBUG host: Searching for cap: nfs_prune
DEBUG host: Checking in: windows
INFO nfs: Host doesn't support pruning NFS. Skipping.
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::SyncedFolderCleanup:0x529bf30>
INFO synced_folder_cleanup: Invoking synced folder cleanup for: docker
INFO warden: Calling IN action: #<VagrantPlugins::DockerProvider::Action::PrepareNFSSettings:0x523e5d0>
INFO warden: Calling IN action: #<VagrantPlugins::DockerProvider::Action::Login:0x51d48c8>
INFO warden: Calling IN action: #<VagrantPlugins::DockerProvider::Action::Build:0x516f990>
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x50f4ac8>
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 2 hooks defined.
INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x50ffdd8>
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::IsState:0x50fcfe8>
DEBUG is_state: Checking if machine state is 'preparing'
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo -n "========== VAGRANT DOCKER BEGIN =========="; "docker" "ps" "-a" "-q" "--no-trunc" (sudo=false)
DEBUG ssh: stdout: ========== VAGRANT DOCKER BEGIN ==========
DEBUG ssh: Exit status: 0
DEBUG is_state: -- Machine state: preparing
INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::IsState:0x50fcfe8>
INFO runner: Preparing hooks for middleware sequence...
INFO runner: 2 hooks defined.
INFO runner: Running action: machine_action_up #<Vagrant::Action::Warden:0x52b0840>
INFO warden: Calling IN action: #<Proc:0x49918b0@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::EnvSet:0x52b07f8>
INFO warden: Calling IN action: #<VagrantPlugins::DockerProvider::Action::HostMachinePortWarning:0x52b07e0>
INFO interface: warn: Warning: When using a remote Docker host, forwarded ports will NOT be
immediately available on your machine. They will still be forwarded on
the remote machine, however, so if you have a way to access the remote
machine, then you should be able to access those ports there. This is
not an error, it is only an informational message.
INFO interface: warn: ==> postgres: Warning: When using a remote Docker host, forwarded ports will NOT be
==> postgres: immediately available on your machine. They will still be forwarded on
==> postgres: the remote machine, however, so if you have a way to access the remote
==> postgres: machine, then you should be able to access those ports there. This is
==> postgres: not an error, it is only an informational message.
==> postgres: Warning: When using a remote Docker host, forwarded ports will NOT be
==> postgres: immediately available on your machine. They will still be forwarded on
==> postgres: the remote machine, however, so if you have a way to access the remote
==> postgres: machine, then you should be able to access those ports there. This is
==> postgres: not an error, it is only an informational message.
INFO warden: Calling IN action: #<VagrantPlugins::DockerProvider::Action::HostMachinePortChecker:0x52b07c8>
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::HandleForwardedPortCollisions:0x524da98>
DEBUG environment: Attempting to acquire process-lock: fpcollision
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: fpcollision
INFO handle_port_collisions: Detecting any forwarded port collisions...
DEBUG handle_port_collisions: Extra in use: []
DEBUG handle_port_collisions: Remap: {}
DEBUG handle_port_collisions: Repair: true
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG guest: Searching for cap: port_open_check
DEBUG guest: Checking in: redhat
DEBUG guest: Checking in: linux
DEBUG guest: Found cap: port_open_check in linux
INFO guest: Execute capability: port_open_check [#<Vagrant::Machine: dockerhost (VagrantPlugins::ProviderVirtualBox::Provider)>, 2222] (redhat)
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: nc -z -w2 127.0.0.1 2222 (sudo=false)
DEBUG ssh: stderr: bash: line 2: nc: command not found
DEBUG ssh: Exit status: 127
INFO environment: Released process lock: fpcollision
DEBUG environment: Attempting to acquire process-lock: dotlock
INFO environment: Acquired process lock: dotlock
INFO environment: Released process lock: dotlock
INFO warden: Calling IN action: #<Vagrant::Action::Builtin::SyncedFolders:0x51de840>
INFO synced_folders: SyncedFolders loading from cache: false
INFO synced_folders: Synced Folder Implementation: docker
INFO synced_folders: - 35adf75400: /var/lib/docker/docker_1466715385_1927 => /vagrant
INFO synced_folders: Invoking synced folder prepare for: docker
INFO warden: Calling IN action: #<VagrantPlugins::DockerProvider::Action::ForwardedPorts:0x5199d50>
INFO warden: Calling IN action: #<VagrantPlugins::DockerProvider::Action::Pull:0x5199d08>
INFO warden: Calling IN action: #<VagrantPlugins::DockerProvider::Action::Create:0x5199cf0>
INFO interface: output: Creating the container...
INFO interface: output: ==> postgres: Creating the container...
==> postgres: Creating the container...
INFO interface: detail: Name: postgres
INFO interface: detail: postgres: Name: postgres
 postgres: Name: postgres
INFO interface: detail: Image: postgres:9.6
INFO interface: detail: postgres: Image: postgres:9.6
 postgres: Image: postgres:9.6
INFO interface: detail: Volume: /home/vagrant/workspace/shared-data/postgres/data:/var/lib/postgresql/data
INFO interface: detail: postgres: Volume: /home/vagrant/workspace/shared-data/postgres/data:/var/lib/postgresql/data
 postgres: Volume: /home/vagrant/workspace/shared-data/postgres/data:/var/lib/postgresql/data
INFO interface: detail: Volume: /var/lib/docker/docker_1466715385_1927:/vagrant
INFO interface: detail: postgres: Volume: /var/lib/docker/docker_1466715385_1927:/vagrant
 postgres: Volume: /var/lib/docker/docker_1466715385_1927:/vagrant
INFO interface: detail: Port: 5432:5432
INFO interface: detail: postgres: Port: 5432:5432
 postgres: Port: 5432:5432
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo -n "========== VAGRANT DOCKER BEGIN =========="; "docker" "run" "--name" "postgres" "-d" "-e" "POSTGRES_USER=root" "-e" "POSTGRES_PASSWORD=root" "-e" "POSTGRES_DB=dockertest" "-p" "5432:5432" "-v" "/home/vagrant/workspace/shared-data/postgres/data:/var/lib/postgresql/data" "-v" "/var/lib/docker/docker_1466715385_1927:/vagrant" "postgres:9.6" (sudo=false)
DEBUG ssh: stdout: ========== VAGRANT DOCKER BEGIN ==========
DEBUG ssh: stderr: Unable to find image 'postgres:9.6' locally
DEBUG ssh: stderr: 9.6: Pulling from library/postgres
51f5c6a04d83: Pulling fs layer
a3ed95caeb02: Pulling fs layer
4a40f149a638: Pulling fs layer
7e8f4bc7ac43: Pulling fs layer
f2a70e1bea0a: Pulling fs layer
6d6ccf3c012c: Pulling fs layer
4b0c5c71fa5d: Pulling fs layer
c92be1e111dd: Pulling fs layer
1165e9e3fe82: Pulling fs layer
e5c557c118c5: Pulling fs layer
bbe9b21269d5: Pulling fs layer
a211c497e30d: Pulling fs layer
DEBUG ssh: stderr: 7e8f4bc7ac43: Waiting
f2a70e1bea0a: Waiting
6d6ccf3c012c: Waiting
4b0c5c71fa5d: Waiting
c92be1e111dd: Waiting
1165e9e3fe82: Waiting
e5c557c118c5: Waiting
bbe9b21269d5: Waiting
a211c497e30d: Waiting
DEBUG ssh: stderr: 4a40f149a638: Verifying Checksum
4a40f149a638: Download complete
DEBUG ssh: stderr: a3ed95caeb02: Verifying Checksum
a3ed95caeb02: Download complete
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stderr: 7e8f4bc7ac43: Verifying Checksum
7e8f4bc7ac43: Download complete
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stderr: 6d6ccf3c012c: Verifying Checksum
6d6ccf3c012c: Download complete
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stderr: 4b0c5c71fa5d: Verifying Checksum
4b0c5c71fa5d: Download complete
DEBUG ssh: stderr: c92be1e111dd: Verifying Checksum
c92be1e111dd: Download complete
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stderr: f2a70e1bea0a: Verifying Checksum
f2a70e1bea0a: Download complete
DEBUG ssh: stderr: e5c557c118c5: Verifying Checksum
e5c557c118c5: Download complete
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stderr: bbe9b21269d5: Verifying Checksum
bbe9b21269d5: Download complete
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stderr: a211c497e30d: Verifying Checksum
a211c497e30d: Download complete
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stderr: 51f5c6a04d83: Verifying Checksum
51f5c6a04d83: Download complete
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stderr: 1165e9e3fe82: Verifying Checksum
1165e9e3fe82: Download complete
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stderr: 51f5c6a04d83: Pull complete
DEBUG ssh: stderr: a3ed95caeb02: Pull complete
DEBUG ssh: stderr: 4a40f149a638:
DEBUG ssh: stderr: Pull complete
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stderr: 7e8f4bc7ac43: Pull complete
DEBUG ssh: stderr: f2a70e1bea0a: Pull complete
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stderr: 6d6ccf3c012c: Pull complete
DEBUG ssh: stderr: 4b0c5c71fa5d: Pull complete
DEBUG ssh: stderr: c92be1e111dd: Pull complete
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stderr: 1165e9e3fe82: Pull complete
DEBUG ssh: stderr: e5c557c118c5: Pull complete
DEBUG ssh: stderr: bbe9b21269d5: Pull complete
DEBUG ssh: stderr: a211c497e30d: Pull complete
DEBUG ssh: Sending SSH keep-alive...
DEBUG ssh: stderr: Digest: sha256:012949f218b1356ee6b52d8888990fe5eddf29a04aa23fd512b875f7c1372329
DEBUG ssh: stderr: Status: Downloaded newer image for postgres:9.6
DEBUG ssh: stdout: 50910329959bdf31398510c365e6633cb94fd96dc4d5d604b833caf25834424a
DEBUG ssh: Exit status: 0
INFO interface: detail:
Container created: 50910329959bdf31
INFO interface: detail: postgres:
postgres: Container created: 50910329959bdf31
 postgres:
postgres: Container created: 50910329959bdf31
INFO machine: New machine ID: "50910329959bdf31398510c365e6633cb94fd96dc4d5d604b833caf25834424a"
INFO warden: Calling IN action: #<VagrantPlugins::DockerProvider::Action::WaitForRunning:0x5199c90>
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo -n "========== VAGRANT DOCKER BEGIN =========="; "docker" "ps" "-a" "-q" "--no-trunc" (sudo=false)
DEBUG ssh: stdout: ========== VAGRANT DOCKER BEGIN ==========
DEBUG ssh: stdout: 50910329959bdf31398510c365e6633cb94fd96dc4d5d604b833caf25834424a
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo -n "========== VAGRANT DOCKER BEGIN =========="; "docker" "ps" "-q" "--no-trunc" (sudo=false)
DEBUG ssh: stdout: ========== VAGRANT DOCKER BEGIN ==========
DEBUG ssh: stdout: 50910329959bdf31398510c365e6633cb94fd96dc4d5d604b833caf25834424a
DEBUG ssh: Exit status: 0
INFO warden: Calling IN action: #<Proc:0x5114700@C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:94 (lambda)>
INFO warden: Calling IN action: #<VagrantPlugins::DockerProvider::Action::Start:0x50f4a68>
INFO interface: output: Starting container...
INFO interface: output: ==> postgres: Starting container...
==> postgres: Starting container...
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo -n "========== VAGRANT DOCKER BEGIN =========="; "docker" "ps" "-q" "--no-trunc" (sudo=false)
DEBUG ssh: stdout: ========== VAGRANT DOCKER BEGIN ==========
DEBUG ssh: stdout: 50910329959bdf31398510c365e6633cb94fd96dc4d5d604b833caf25834424a
DEBUG ssh: Exit status: 0
INFO warden: Calling IN action: #<VagrantPlugins::DockerProvider::Action::WaitForRunning:0x50f4a50>
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo -n "========== VAGRANT DOCKER BEGIN =========="; "docker" "ps" "-a" "-q" "--no-trunc" (sudo=false)
DEBUG ssh: stdout: ========== VAGRANT DOCKER BEGIN ==========
DEBUG ssh: stdout: 50910329959bdf31398510c365e6633cb94fd96dc4d5d604b833caf25834424a
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo -n "========== VAGRANT DOCKER BEGIN =========="; "docker" "ps" "-q" "--no-trunc" (sudo=false)
DEBUG ssh: stdout: ========== VAGRANT DOCKER BEGIN ==========
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo -n "========== VAGRANT DOCKER BEGIN =========="; "docker" "ps" "-a" "-q" "--no-trunc" (sudo=false)
DEBUG ssh: stdout: ========== VAGRANT DOCKER BEGIN ==========
DEBUG ssh: stdout: 50910329959bdf31398510c365e6633cb94fd96dc4d5d604b833caf25834424a
DEBUG ssh: Exit status: 0
INFO interface: output: Waiting for container to enter "running" state...
INFO interface: output: ==> postgres: Waiting for container to enter "running" state...
==> postgres: Waiting for container to enter "running" state...
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo -n "========== VAGRANT DOCKER BEGIN =========="; "docker" "ps" "-a" "-q" "--no-trunc" (sudo=false)
DEBUG ssh: stdout: ========== VAGRANT DOCKER BEGIN ==========
DEBUG ssh: stdout: 50910329959bdf31398510c365e6633cb94fd96dc4d5d604b833caf25834424a
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo -n "========== VAGRANT DOCKER BEGIN =========="; "docker" "ps" "-q" "--no-trunc" (sudo=false)
DEBUG ssh: stdout: ========== VAGRANT DOCKER BEGIN ==========
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo -n "========== VAGRANT DOCKER BEGIN =========="; "docker" "ps" "-a" "-q" "--no-trunc" (sudo=false)
DEBUG ssh: stdout: ========== VAGRANT DOCKER BEGIN ==========
DEBUG ssh: stdout: 50910329959bdf31398510c365e6633cb94fd96dc4d5d604b833caf25834424a
DEBUG ssh: Exit status: 0
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo -n "========== VAGRANT DOCKER BEGIN =========="; "docker" "ps" "-a" "-q" "--no-trunc" (sudo=false)
DEBUG ssh: stdout: ========== VAGRANT DOCKER BEGIN ==========
DEBUG ssh: stdout: 50910329959bdf31398510c365e6633cb94fd96dc4d5d604b833caf25834424a
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo -n "========== VAGRANT DOCKER BEGIN =========="; "docker" "ps" "-q" "--no-trunc" (sudo=false)
DEBUG ssh: stdout: ========== VAGRANT DOCKER BEGIN ==========
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo -n "========== VAGRANT DOCKER BEGIN =========="; "docker" "ps" "-a" "-q" "--no-trunc" (sudo=false)
DEBUG ssh: stdout: ========== VAGRANT DOCKER BEGIN ==========
DEBUG ssh: stdout: 50910329959bdf31398510c365e6633cb94fd96dc4d5d604b833caf25834424a
DEBUG ssh: Exit status: 0
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo -n "========== VAGRANT DOCKER BEGIN =========="; "docker" "ps" "-a" "-q" "--no-trunc" (sudo=false)
DEBUG ssh: stdout: ========== VAGRANT DOCKER BEGIN ==========
DEBUG ssh: stdout: 50910329959bdf31398510c365e6633cb94fd96dc4d5d604b833caf25834424a
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo -n "========== VAGRANT DOCKER BEGIN =========="; "docker" "ps" "-q" "--no-trunc" (sudo=false)
DEBUG ssh: stdout: ========== VAGRANT DOCKER BEGIN ==========
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo -n "========== VAGRANT DOCKER BEGIN =========="; "docker" "ps" "-a" "-q" "--no-trunc" (sudo=false)
DEBUG ssh: stdout: ========== VAGRANT DOCKER BEGIN ==========
DEBUG ssh: stdout: 50910329959bdf31398510c365e6633cb94fd96dc4d5d604b833caf25834424a
DEBUG ssh: Exit status: 0
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo -n "========== VAGRANT DOCKER BEGIN =========="; "docker" "ps" "-a" "-q" "--no-trunc" (sudo=false)
DEBUG ssh: stdout: ========== VAGRANT DOCKER BEGIN ==========
DEBUG ssh: stdout: 50910329959bdf31398510c365e6633cb94fd96dc4d5d604b833caf25834424a
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo -n "========== VAGRANT DOCKER BEGIN =========="; "docker" "ps" "-q" "--no-trunc" (sudo=false)
DEBUG ssh: stdout: ========== VAGRANT DOCKER BEGIN ==========
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo -n "========== VAGRANT DOCKER BEGIN =========="; "docker" "ps" "-a" "-q" "--no-trunc" (sudo=false)
DEBUG ssh: stdout: ========== VAGRANT DOCKER BEGIN ==========
DEBUG ssh: stdout: 50910329959bdf31398510c365e6633cb94fd96dc4d5d604b833caf25834424a
DEBUG ssh: Exit status: 0
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo -n "========== VAGRANT DOCKER BEGIN =========="; "docker" "ps" "-a" "-q" "--no-trunc" (sudo=false)
DEBUG ssh: stdout: ========== VAGRANT DOCKER BEGIN ==========
DEBUG ssh: stdout: 50910329959bdf31398510c365e6633cb94fd96dc4d5d604b833caf25834424a
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo -n "========== VAGRANT DOCKER BEGIN =========="; "docker" "ps" "-q" "--no-trunc" (sudo=false)
DEBUG ssh: stdout: ========== VAGRANT DOCKER BEGIN ==========
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo -n "========== VAGRANT DOCKER BEGIN =========="; "docker" "ps" "-a" "-q" "--no-trunc" (sudo=false)
DEBUG ssh: stdout: ========== VAGRANT DOCKER BEGIN ==========
DEBUG ssh: stdout: 50910329959bdf31398510c365e6633cb94fd96dc4d5d604b833caf25834424a
DEBUG ssh: Exit status: 0
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo -n "========== VAGRANT DOCKER BEGIN =========="; "docker" "ps" "-a" "-q" "--no-trunc" (sudo=false)
DEBUG ssh: stdout: ========== VAGRANT DOCKER BEGIN ==========
DEBUG ssh: stdout: 50910329959bdf31398510c365e6633cb94fd96dc4d5d604b833caf25834424a
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo -n "========== VAGRANT DOCKER BEGIN =========="; "docker" "ps" "-q" "--no-trunc" (sudo=false)
DEBUG ssh: stdout: ========== VAGRANT DOCKER BEGIN ==========
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo -n "========== VAGRANT DOCKER BEGIN =========="; "docker" "ps" "-a" "-q" "--no-trunc" (sudo=false)
DEBUG ssh: stdout: ========== VAGRANT DOCKER BEGIN ==========
DEBUG ssh: stdout: 50910329959bdf31398510c365e6633cb94fd96dc4d5d604b833caf25834424a
DEBUG ssh: Exit status: 0
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo -n "========== VAGRANT DOCKER BEGIN =========="; "docker" "ps" "-a" "-q" "--no-trunc" (sudo=false)
DEBUG ssh: stdout: ========== VAGRANT DOCKER BEGIN ==========
DEBUG ssh: stdout: 50910329959bdf31398510c365e6633cb94fd96dc4d5d604b833caf25834424a
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo -n "========== VAGRANT DOCKER BEGIN =========="; "docker" "ps" "-q" "--no-trunc" (sudo=false)
DEBUG ssh: stdout: ========== VAGRANT DOCKER BEGIN ==========
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo -n "========== VAGRANT DOCKER BEGIN =========="; "docker" "ps" "-a" "-q" "--no-trunc" (sudo=false)
DEBUG ssh: stdout: ========== VAGRANT DOCKER BEGIN ==========
DEBUG ssh: stdout: 50910329959bdf31398510c365e6633cb94fd96dc4d5d604b833caf25834424a
DEBUG ssh: Exit status: 0
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo -n "========== VAGRANT DOCKER BEGIN =========="; "docker" "ps" "-a" "-q" "--no-trunc" (sudo=false)
DEBUG ssh: stdout: ========== VAGRANT DOCKER BEGIN ==========
DEBUG ssh: stdout: 50910329959bdf31398510c365e6633cb94fd96dc4d5d604b833caf25834424a
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo -n "========== VAGRANT DOCKER BEGIN =========="; "docker" "ps" "-q" "--no-trunc" (sudo=false)
DEBUG ssh: stdout: ========== VAGRANT DOCKER BEGIN ==========
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo -n "========== VAGRANT DOCKER BEGIN =========="; "docker" "ps" "-a" "-q" "--no-trunc" (sudo=false)
DEBUG ssh: stdout: ========== VAGRANT DOCKER BEGIN ==========
DEBUG ssh: stdout: 50910329959bdf31398510c365e6633cb94fd96dc4d5d604b833caf25834424a
DEBUG ssh: Exit status: 0
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: (sudo=false)
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo -n "========== VAGRANT DOCKER BEGIN =========="; "docker" "ps" "-a" "-q" "--no-trunc" (sudo=false)
DEBUG ssh: stdout: ========== VAGRANT DOCKER BEGIN ==========
DEBUG ssh: stdout: 50910329959bdf31398510c365e6633cb94fd96dc4d5d604b833caf25834424a
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo -n "========== VAGRANT DOCKER BEGIN =========="; "docker" "ps" "-q" "--no-trunc" (sudo=false)
DEBUG ssh: stdout: ========== VAGRANT DOCKER BEGIN ==========
DEBUG ssh: Exit status: 0
DEBUG ssh: Re-using SSH connection.
INFO ssh: Execute: echo -n "========== VAGRANT DOCKER BEGIN =========="; "docker" "ps" "-a" "-q" "--no-trunc" (sudo=false)
DEBUG ssh: stdout: ========== VAGRANT DOCKER BEGIN ==========
DEBUG ssh: stdout: 50910329959bdf31398510c365e6633cb94fd96dc4d5d604b833caf25834424a
DEBUG ssh: Exit status: 0
ERROR warden: Error occurred: The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.
If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":
config.vm.provider "docker" do |d|
d.remains_running = false
end
INFO warden: Beginning recovery process...
INFO warden: Calling recover: #<Vagrant::Action::Builtin::Call:0x50f4ac8>
INFO warden: Beginning recovery process...
INFO warden: Calling recover: #<Vagrant::Action::Builtin::HandleForwardedPortCollisions:0x524da98>
INFO warden: Recovery complete.
INFO warden: Calling recover: #<Vagrant::Action::Builtin::Call:0x559b3c0>
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Calling recover: #<Vagrant::Action::Builtin::Call:0x559b3f0>
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
ERROR warden: Error occurred: The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.
If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":
config.vm.provider "docker" do |d|
d.remains_running = false
end
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: The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.
If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":
config.vm.provider "docker" do |d|
d.remains_running = false
end
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: The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.
If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":
config.vm.provider "docker" do |d|
d.remains_running = false
end
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
ERROR warden: Error occurred: The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.
If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":
config.vm.provider "docker" do |d|
d.remains_running = false
end
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
ERROR warden: Error occurred: The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.
If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":
config.vm.provider "docker" do |d|
d.remains_running = false
end
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
ERROR warden: Error occurred: The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.
If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":
config.vm.provider "docker" do |d|
d.remains_running = false
end
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
ERROR warden: Error occurred: The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.
If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":
config.vm.provider "docker" do |d|
d.remains_running = false
end
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
ERROR warden: Error occurred: The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.
If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":
config.vm.provider "docker" do |d|
d.remains_running = false
end
INFO warden: Beginning recovery process...
INFO warden: Calling recover: #<Vagrant::Action::Builtin::Call:0x49d3c70>
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Calling recover: #<Vagrant::Action::Builtin::Call:0x49d3cd0>
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Calling recover: #<Vagrant::Action::Builtin::Call:0x29cf118>
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Recovery complete.
ERROR warden: Error occurred: The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.
If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":
config.vm.provider "docker" do |d|
d.remains_running = false
end
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: The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.
If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":
config.vm.provider "docker" do |d|
d.remains_running = false
end
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: The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.
If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":
config.vm.provider "docker" do |d|
d.remains_running = false
end
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
ERROR warden: Error occurred: The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.
If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":
config.vm.provider "docker" do |d|
d.remains_running = false
end
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO environment: Released process lock: machine-action-c7cccc2d14381c959ced4d0898757534
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:0x52a3a00>
ERROR vagrant: Vagrant experienced an error! Details:
ERROR vagrant: #<VagrantPlugins::DockerProvider::Errors::StateStopped: The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.
If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":
config.vm.provider "docker" do |d|
d.remains_running = false
end>
ERROR vagrant: The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.
If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":
config.vm.provider "docker" do |d|
d.remains_running = false
end
ERROR vagrant: C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/providers/docker/action/wait_for_running.rb:33:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/providers/docker/action/start.rb:16:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/providers/docker/action/wait_for_running.rb:25:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/providers/docker/action/create.rb:85:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/providers/docker/action/pull.rb:16:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/providers/docker/action/forwarded_ports.rb:26:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/builtin/synced_folders.rb:87:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/builtin/handle_forwarded_port_collisions.rb:49:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/providers/docker/action/host_machine_port_checker.rb:19:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/providers/docker/action/host_machine_port_warning.rb:22:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/builtin/env_set.rb:19:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/builder.rb:116:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/runner.rb:66:in `block in run'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/util/busy.rb:19:in `busy'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/runner.rb:66:in `run'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/builtin/call.rb:53:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/providers/docker/action/build.rb:22:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/providers/docker/action/login.rb:17:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/providers/docker/action/prepare_nfs_settings.rb:15:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/builtin/synced_folder_cleanup.rb:28:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/synced_folders/nfs/action_cleanup.rb:19:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/providers/docker/action/prepare_nfs_valid_ids.rb:14:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/providers/docker/action/host_machine_sync_folders.rb:41:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/providers/docker/action/host_machine_build_dir.rb:19:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/providers/docker/action/init_state.rb:15:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/builder.rb:116:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/runner.rb:66:in `block in run'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/util/busy.rb:19:in `busy'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/runner.rb:66:in `run'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/builtin/call.rb:53:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/builtin/message.rb:17:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/builder.rb:116:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/runner.rb:66:in `block in run'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/util/busy.rb:19:in `busy'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/runner.rb:66:in `run'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/builtin/call.rb:53:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/builder.rb:116:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/runner.rb:66:in `block in run'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/util/busy.rb:19:in `busy'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/runner.rb:66:in `run'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/builtin/call.rb:53:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/providers/docker/action/destroy_build_image.rb:43:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/builtin/handle_box.rb:25:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/builder.rb:116:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/runner.rb:66:in `block in run'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/util/busy.rb:19:in `busy'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/runner.rb:66:in `run'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/builtin/call.rb:53:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/plugins/providers/docker/action/host_machine.rb:35:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/builtin/config_validate.rb:25:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/builtin/handle_box.rb:25:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/builder.rb:116:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/runner.rb:66:in `block in run'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/util/busy.rb:19:in `busy'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/runner.rb:66:in `run'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/builtin/call.rb:53:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/warden.rb:34:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/builder.rb:116:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/runner.rb:66:in `block in run'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/util/busy.rb:19:in `busy'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/action/runner.rb:66:in `run'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/machine.rb:224:in `action_raw'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/machine.rb:199:in `block in action'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/environment.rb:561:in `lock'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/machine.rb:185:in `call'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/machine.rb:185:in `action'
C:/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.8.1/lib/vagrant/batch_action.rb:82:in `block (2 levels) in run'
INFO interface: error: The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.
If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":
config.vm.provider "docker" do |d|
d.remains_running = false
end
The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.
If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":
config.vm.provider "docker" do |d|
d.remains_running = false
end
INFO interface: Machine: error-exit ["VagrantPlugins::DockerProvider::Errors::StateStopped", "The container started either never left the \"stopped\" state or\nvery quickly reverted to the \"stopped\" state. This is usually\nbecause the container didn't execute a command that kept it running,\nand usually indicates a misconfiguration.\n\nIf you meant for this container to not remain running, please\nset the Docker provider configuration \"remains_running\" to \"false\":\n\n config.vm.provider \"docker\" do |d|\n d.remains_running = false\n end"]
################################################################
#
# Author: Mark Higginbottom
#
# Date: 13/6/2016
#
#Vagrant PROJECT file to create docker containers
#
#
################################################################
ENV['VAGRANT_DEFAULT_PROVIDER'] = 'docker'
DOCKER_HOST_NAME = "dockerhost"
DOCKER_HOST_VAGRANTFILE = "./host/Vagrantfile"
Vagrant.configure("2") do |config|
config.vm.define "postgres" do |v|
v.vm.provider "docker" do |d|
d.image = "postgres:9.6"
d.name = "postgres"
#d.create_args = ["--volumes-from=shared-data"]
d.env = {
:POSTGRES_USER => "root",
:POSTGRES_PASSWORD => "root",
:POSTGRES_DB => "dockertest"
}
d.ports =["5432:5432"]
d.remains_running = "true"
#map postgres data folder to (shared) folder on dockerhost
d.volumes=["/home/vagrant/workspace/shared-data/postgres/data:/var/lib/postgresql/data"]
d.vagrant_machine = "#{DOCKER_HOST_NAME}"
d.vagrant_vagrantfile = "#{DOCKER_HOST_VAGRANTFILE}"
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment