docker / machine

Machine management for a container-centric world
https://docs.docker.com/machine/
Apache License 2.0
6.63k stars 1.97k forks source link

[amazonec2] install fails on Ubuntu #3004

Closed errordeveloper closed 8 years ago

errordeveloper commented 8 years ago

I've just tried creating an EC2 instance with the latest release and it failed.

> env \
  AWS_ACCESS_KEY_ID="..." \
  AWS_SECRET_ACCESS_KEY="..." \
  AWS_VPC_ID="vpc-xxx" \
  AWS_DEFAULT_REGION="eu-central-1" \
    docker-machine create -d amazonec2 kube-1
Running pre-create checks...
Creating machine...
(kube-1) Launching instance...
Waiting for machine to be running, this may take a few minutes...
Machine is running, waiting for SSH to be available...
Detecting operating system of created instance...
Detecting the provisioner...
Provisioning with ubuntu(systemd)...
Installing Docker...
Copying certs to the local machine directory...
Copying certs to the remote machine...
Setting Docker configuration on the remote daemon...
Error creating machine: Error running provisioning: Unable to verify the Docker daemon is listening: Maximum number of retries (10) exceeded

> docker-machine ssh kube-1 systemctl status docker
● docker.service
   Loaded: loaded (/etc/systemd/system/docker.service; enabled; vendor preset: enabled)
   Active: failed (Result: exit-code) since Fri 2016-02-05 14:01:24 UTC; 5min ago
  Process: 21620 ExecStart=/usr/bin/docker -d -H tcp://0.0.0.0:2376 -H unix:///var/run/docker.sock --storage-driver aufs --tlsverify --tlscacert /etc/docker/ca.pem --tlscert /etc/docker/server.pem --tlskey /etc/docker/server-key.pem --label provider=amazonec2 (code=exited, status=125)
 Main PID: 21620 (code=exited, status=125)

Feb 05 14:01:24 kube-1 systemd[1]: Started docker.service.
Feb 05 14:01:24 kube-1 docker[21620]: flag provided but not defined: -d
Feb 05 14:01:24 kube-1 docker[21620]: See '/usr/bin/docker --help'.
Feb 05 14:01:24 kube-1 systemd[1]: docker.service: Main process exited, code=exited, status=125/n/a
Feb 05 14:01:24 kube-1 systemd[1]: docker.service: Unit entered failed state.
Feb 05 14:01:24 kube-1 systemd[1]: docker.service: Failed with result 'exit-code'.
exit status 3
errordeveloper commented 8 years ago
> docker-machine ssh kube-1 systemctl cat docker
# /etc/systemd/system/docker.service
[Service]
ExecStart=/usr/bin/docker -d -H tcp://0.0.0.0:2376 -H unix:///var/run/docker.sock --storage-driver aufs --tlsverify --tlscacert /etc/docker/ca.pem --tlscert /etc/docker/server.pem --tlskey /etc/docker/server-key.pem --label provider=amazonec2 
MountFlags=slave
LimitNOFILE=1048576
LimitNPROC=1048576
LimitCORE=infinity
Environment=

[Install]
WantedBy=multi-user.target
micheletedeschi commented 8 years ago

+1

nathanleclaire commented 8 years ago

Odd - our provisioning code should always use daemon instead of -d. I'll take a look.

nathanleclaire commented 8 years ago

The AMI used is just whatever Docker Machine picked by default?

nathanleclaire commented 8 years ago

Also, can you please post the output of running such a failing command using --debug flag? Especially to confirm that this is happening in Machine version 0.6.0, is very important, since in master https://github.com/docker/machine/blob/master/libmachine/provision/systemd.go#L44 implies that daemon will be used.

nickdgriffin commented 8 years ago

So I noticed this yesterday just as Docker 1.10 and Machine 0.6 were released where we were still running Docker 1.9.1 and Machine 0.5.3 locally however Machine was provisioning Engine 1.10 machines using "-d" instead of "daemon" which resulted in the Engine failing to start. This was using a Ubuntu 15.x AMI that we specified (I think for networking perhaps?), rather than the default it selects. Looking at the history of that file it makes sense that it was happening pre-0.6.0.

zbyte64 commented 8 years ago

Yes, I had the same issue and then I discovered I was running Machine 0.5.3 . I can confirm that Machine 0.6.0 properly specifies the daemon command on AWS ubuntu. It seems docker-machine will install the latest version of docker by default.

micheletedeschi commented 8 years ago

I use docker-machine 0.5.6 and 0.6.0 with driver amazonec2 the create command always install the latest docker version using https://get.docker.com script. I resolve copying the script and parametrize the docker version that I want to Install.

with docker-machine I use the parameter --engine-install-url [public url point to custom script with fixed 1.9.1 version ].

nathanleclaire commented 8 years ago

FYI, in some situations you might be able to use 0.6.0's docker-machine provision command to re-set the config file to correctly use daemon instead of -d. However, be advised that this:

  1. Will not work if Swarm containers are existing on this instance (provision is slightly naive today)
  2. Will regenerate the existing certificates
errordeveloper commented 8 years ago

The AMI used is just whatever Docker Machine picked by default?

Yes.

errordeveloper commented 8 years ago

@nathanleclaire the AMI appears to be ubuntu-wily-15.10-amd64-server-20151116.1 (ami-ab0210c7) and it's in eu-central-1.

Here is the debug output:

> env \
  AWS_ACCESS_KEY_ID="..." \
  AWS_SECRET_ACCESS_KEY="..." \
  AWS_VPC_ID="vpc-0326fe6a" \
  AWS_DEFAULT_REGION="eu-central-1" \
    docker-machine --debug create -d amazonec2 test-3
Docker Machine Version:  0.5.6, build 61388e9
Found binary path at /usr/local/bin/docker-machine
Launching plugin server for driver amazonec2
Plugin server listening at address 127.0.0.1:63837
() Calling .GetVersion
Using API Version  1
() Calling .SetConfigRaw
() Calling .GetMachineName
(flag-lookup) Calling .GetMachineName
(flag-lookup) Calling .DriverName
(flag-lookup) Calling .GetCreateFlags
Found binary path at /usr/local/bin/docker-machine
Launching plugin server for driver amazonec2
Plugin server listening at address 127.0.0.1:63841
() Calling .GetVersion
Using API Version  1
() Calling .SetConfigRaw
() Calling .GetMachineName
(test-3) Calling .GetMachineName
(test-3) Calling .DriverName
(test-3) Calling .GetCreateFlags
(test-3) Calling .SetConfigFromFlags
Running pre-create checks...
(test-3) Calling .PreCreateCheck
(test-3) Calling .GetConfigRaw
Creating machine...
(test-3) Calling .Create
(test-3) Launching instance...
(test-3) DBG | creating key pair: test-3
(test-3) DBG | configuring security group in vpc-0326fe6a
(test-3) DBG | found existing security group (docker-machine) in vpc-0326fe6a
(test-3) DBG | configuring security group authorization for 0.0.0.0/0
(test-3) DBG | launching instance in subnet subnet-0506aa6c
(test-3) DBG | waiting for ip address to become available
(test-3) DBG | No IP for instance i-22984f9f
(test-3) DBG | No IP for instance i-22984f9f
(test-3) DBG | No IP for instance i-22984f9f
(test-3) DBG | No IP for instance i-22984f9f
(test-3) DBG | No IP for instance i-22984f9f
(test-3) DBG | No IP for instance i-22984f9f
(test-3) DBG | No IP for instance i-22984f9f
(test-3) DBG | Got the IP Address, it's "52.29.118.23"
(test-3) DBG | created instance ID i-22984f9f, IP address 52.29.118.23, Private IP address 172.31.0.37
(test-3) DBG | Settings tags for instance
(test-3) Calling .GetConfigRaw
(test-3) Calling .DriverName
(test-3) Calling .DriverName
Waiting for machine to be running, this may take a few minutes...
(test-3) Calling .GetState
Machine is running, waiting for SSH to be available...
Getting to WaitForSSH function...
(test-3) Calling .GetSSHHostname
(test-3) Calling .GetSSHPort
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHUsername
Using SSH client type: external
{[-o BatchMode=yes -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none ubuntu@52.29.118.23 -o IdentitiesOnly=yes -i /Users/ilya/.docker/machine/machines/test-3/id_rsa -p 22] /usr/bin/ssh}
About to run SSH command:
exit 0
SSH cmd err, output: exit status 255: 
Error getting ssh command 'exit 0' : Something went wrong running an SSH command!
command : exit 0
err     : exit status 255
output  : 

Getting to WaitForSSH function...
(test-3) Calling .GetSSHHostname
(test-3) Calling .GetSSHPort
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHUsername
Using SSH client type: external
{[-o BatchMode=yes -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none ubuntu@52.29.118.23 -o IdentitiesOnly=yes -i /Users/ilya/.docker/machine/machines/test-3/id_rsa -p 22] /usr/bin/ssh}
About to run SSH command:
exit 0
SSH cmd err, output: exit status 255: 
Error getting ssh command 'exit 0' : Something went wrong running an SSH command!
command : exit 0
err     : exit status 255
output  : 

Getting to WaitForSSH function...
(test-3) Calling .GetSSHHostname
(test-3) Calling .GetSSHPort
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHUsername
Using SSH client type: external
{[-o BatchMode=yes -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none ubuntu@52.29.118.23 -o IdentitiesOnly=yes -i /Users/ilya/.docker/machine/machines/test-3/id_rsa -p 22] /usr/bin/ssh}
About to run SSH command:
exit 0
SSH cmd err, output: exit status 255: 
Error getting ssh command 'exit 0' : Something went wrong running an SSH command!
command : exit 0
err     : exit status 255
output  : 

Getting to WaitForSSH function...
(test-3) Calling .GetSSHHostname
(test-3) Calling .GetSSHPort
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHUsername
Using SSH client type: external
{[-o BatchMode=yes -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none ubuntu@52.29.118.23 -o IdentitiesOnly=yes -i /Users/ilya/.docker/machine/machines/test-3/id_rsa -p 22] /usr/bin/ssh}
About to run SSH command:
exit 0
SSH cmd err, output: exit status 255: 
Error getting ssh command 'exit 0' : Something went wrong running an SSH command!
command : exit 0
err     : exit status 255
output  : 

Getting to WaitForSSH function...
(test-3) Calling .GetSSHHostname
(test-3) Calling .GetSSHPort
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHUsername
Using SSH client type: external
{[-o BatchMode=yes -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none ubuntu@52.29.118.23 -o IdentitiesOnly=yes -i /Users/ilya/.docker/machine/machines/test-3/id_rsa -p 22] /usr/bin/ssh}
About to run SSH command:
exit 0
SSH cmd err, output: exit status 255: 
Error getting ssh command 'exit 0' : Something went wrong running an SSH command!
command : exit 0
err     : exit status 255
output  : 

Getting to WaitForSSH function...
(test-3) Calling .GetSSHHostname
(test-3) Calling .GetSSHPort
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHUsername
Using SSH client type: external
{[-o BatchMode=yes -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none ubuntu@52.29.118.23 -o IdentitiesOnly=yes -i /Users/ilya/.docker/machine/machines/test-3/id_rsa -p 22] /usr/bin/ssh}
About to run SSH command:
exit 0
SSH cmd err, output: exit status 255: 
Error getting ssh command 'exit 0' : Something went wrong running an SSH command!
command : exit 0
err     : exit status 255
output  : 

Getting to WaitForSSH function...
(test-3) Calling .GetSSHHostname
(test-3) Calling .GetSSHPort
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHUsername
Using SSH client type: external
{[-o BatchMode=yes -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none ubuntu@52.29.118.23 -o IdentitiesOnly=yes -i /Users/ilya/.docker/machine/machines/test-3/id_rsa -p 22] /usr/bin/ssh}
About to run SSH command:
exit 0
SSH cmd err, output: exit status 255: 
Error getting ssh command 'exit 0' : Something went wrong running an SSH command!
command : exit 0
err     : exit status 255
output  : 

Getting to WaitForSSH function...
(test-3) Calling .GetSSHHostname
(test-3) Calling .GetSSHPort
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHUsername
Using SSH client type: external
{[-o BatchMode=yes -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none ubuntu@52.29.118.23 -o IdentitiesOnly=yes -i /Users/ilya/.docker/machine/machines/test-3/id_rsa -p 22] /usr/bin/ssh}
About to run SSH command:
exit 0
SSH cmd err, output: exit status 255: 
Error getting ssh command 'exit 0' : Something went wrong running an SSH command!
command : exit 0
err     : exit status 255
output  : 

Getting to WaitForSSH function...
(test-3) Calling .GetSSHHostname
(test-3) Calling .GetSSHPort
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHUsername
Using SSH client type: external
{[-o BatchMode=yes -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none ubuntu@52.29.118.23 -o IdentitiesOnly=yes -i /Users/ilya/.docker/machine/machines/test-3/id_rsa -p 22] /usr/bin/ssh}
About to run SSH command:
exit 0
SSH cmd err, output: exit status 255: 
Error getting ssh command 'exit 0' : Something went wrong running an SSH command!
command : exit 0
err     : exit status 255
output  : 

Getting to WaitForSSH function...
(test-3) Calling .GetSSHHostname
(test-3) Calling .GetSSHPort
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHUsername
Using SSH client type: external
{[-o BatchMode=yes -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none ubuntu@52.29.118.23 -o IdentitiesOnly=yes -i /Users/ilya/.docker/machine/machines/test-3/id_rsa -p 22] /usr/bin/ssh}
About to run SSH command:
exit 0
SSH cmd err, output: exit status 255: 
Error getting ssh command 'exit 0' : Something went wrong running an SSH command!
command : exit 0
err     : exit status 255
output  : 

Getting to WaitForSSH function...
(test-3) Calling .GetSSHHostname
(test-3) Calling .GetSSHPort
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHUsername
Using SSH client type: external
{[-o BatchMode=yes -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none ubuntu@52.29.118.23 -o IdentitiesOnly=yes -i /Users/ilya/.docker/machine/machines/test-3/id_rsa -p 22] /usr/bin/ssh}
About to run SSH command:
exit 0
SSH cmd err, output: <nil>: 
Detecting operating system of created instance...
Detecting the provisioner...
(test-3) Calling .GetSSHHostname
(test-3) Calling .GetSSHPort
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHUsername
Using SSH client type: external
{[-o BatchMode=yes -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none ubuntu@52.29.118.23 -o IdentitiesOnly=yes -i /Users/ilya/.docker/machine/machines/test-3/id_rsa -p 22] /usr/bin/ssh}
About to run SSH command:
cat /etc/os-release
SSH cmd err, output: <nil>: NAME="Ubuntu"
VERSION="15.10 (Wily Werewolf)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 15.10"
VERSION_ID="15.10"
HOME_URL="http://www.ubuntu.com/"
SUPPORT_URL="http://help.ubuntu.com/"
BUG_REPORT_URL="http://bugs.launchpad.net/ubuntu/"

found compatible host: ubuntu
Provisioning with ubuntu(systemd)...
setting hostname
(test-3) Calling .GetMachineName
(test-3) Calling .GetSSHHostname
(test-3) Calling .GetSSHPort
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHUsername
Using SSH client type: external
{[-o BatchMode=yes -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none ubuntu@52.29.118.23 -o IdentitiesOnly=yes -i /Users/ilya/.docker/machine/machines/test-3/id_rsa -p 22] /usr/bin/ssh}
About to run SSH command:
sudo hostname test-3 && echo "test-3" | sudo tee /etc/hostname
SSH cmd err, output: <nil>: test-3
sudo: unable to resolve host test-3

(test-3) Calling .GetSSHHostname
(test-3) Calling .GetSSHPort
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHUsername
Using SSH client type: external
{[-o BatchMode=yes -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none ubuntu@52.29.118.23 -o IdentitiesOnly=yes -i /Users/ilya/.docker/machine/machines/test-3/id_rsa -p 22] /usr/bin/ssh}
About to run SSH command:

        if ! grep -xq .*test-3 /etc/hosts; then
            if grep -xq 127.0.1.1.* /etc/hosts; then 
                sudo sed -i 's/^127.0.1.1.*/127.0.1.1 test-3/g' /etc/hosts; 
            else 
                echo '127.0.1.1 test-3' | sudo tee -a /etc/hosts; 
            fi
        fi
SSH cmd err, output: <nil>: sudo: unable to resolve host test-3
127.0.1.1 test-3

installing base packages
(test-3) Calling .GetSSHHostname
(test-3) Calling .GetSSHPort
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHUsername
Using SSH client type: external
{[-o BatchMode=yes -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none ubuntu@52.29.118.23 -o IdentitiesOnly=yes -i /Users/ilya/.docker/machine/machines/test-3/id_rsa -p 22] /usr/bin/ssh}
About to run SSH command:
sudo apt-get update
SSH cmd err, output: <nil>: Hit http://eu-central-1.ec2.archive.ubuntu.com wily InRelease
Get:1 http://eu-central-1.ec2.archive.ubuntu.com wily-updates InRelease [64.4 kB]
Get:2 http://eu-central-1.ec2.archive.ubuntu.com wily-backports InRelease [64.5 kB]
Get:3 http://security.ubuntu.com wily-security InRelease [64.4 kB]
Get:4 http://eu-central-1.ec2.archive.ubuntu.com wily/main Sources [1,118 kB]
Get:5 http://eu-central-1.ec2.archive.ubuntu.com wily/restricted Sources [7,181 B]
Get:6 http://eu-central-1.ec2.archive.ubuntu.com wily/universe Sources [7,238 kB]
Get:7 http://security.ubuntu.com wily-security/main Sources [28.3 kB]
Get:8 http://security.ubuntu.com wily-security/restricted Sources [2,854 B]
Get:9 http://eu-central-1.ec2.archive.ubuntu.com wily/multiverse Sources [178 kB]
Hit http://eu-central-1.ec2.archive.ubuntu.com wily/main amd64 Packages
Hit http://eu-central-1.ec2.archive.ubuntu.com wily/restricted amd64 Packages
Hit http://eu-central-1.ec2.archive.ubuntu.com wily/universe amd64 Packages
Hit http://eu-central-1.ec2.archive.ubuntu.com wily/multiverse amd64 Packages
Hit http://eu-central-1.ec2.archive.ubuntu.com wily/main Translation-en
Hit http://eu-central-1.ec2.archive.ubuntu.com wily/multiverse Translation-en
Hit http://eu-central-1.ec2.archive.ubuntu.com wily/restricted Translation-en
Hit http://eu-central-1.ec2.archive.ubuntu.com wily/universe Translation-en
Get:10 http://eu-central-1.ec2.archive.ubuntu.com wily-updates/main Sources [47.1 kB]
Get:11 http://eu-central-1.ec2.archive.ubuntu.com wily-updates/restricted Sources [3,741 B]
Get:12 http://security.ubuntu.com wily-security/universe Sources [7,420 B]
Get:13 http://security.ubuntu.com wily-security/multiverse Sources [1,923 B]
Get:14 http://eu-central-1.ec2.archive.ubuntu.com wily-updates/universe Sources [12.8 kB]
Get:15 http://eu-central-1.ec2.archive.ubuntu.com wily-updates/multiverse Sources [1,923 B]
Get:16 http://eu-central-1.ec2.archive.ubuntu.com wily-updates/main amd64 Packages [127 kB]
Get:17 http://eu-central-1.ec2.archive.ubuntu.com wily-updates/restricted amd64 Packages [13.3 kB]
Get:18 http://security.ubuntu.com wily-security/main amd64 Packages [90.1 kB]
Get:19 http://eu-central-1.ec2.archive.ubuntu.com wily-updates/universe amd64 Packages [54.6 kB]
Get:20 http://eu-central-1.ec2.archive.ubuntu.com wily-updates/multiverse amd64 Packages [5,903 B]
Get:21 http://eu-central-1.ec2.archive.ubuntu.com wily-updates/main Translation-en [61.8 kB]
Get:22 http://eu-central-1.ec2.archive.ubuntu.com wily-updates/multiverse Translation-en [2,536 B]
Get:23 http://eu-central-1.ec2.archive.ubuntu.com wily-updates/restricted Translation-en [3,024 B]
Get:24 http://eu-central-1.ec2.archive.ubuntu.com wily-updates/universe Translation-en [34.9 kB]
Get:25 http://eu-central-1.ec2.archive.ubuntu.com wily-backports/main Sources [754 B]
Get:26 http://eu-central-1.ec2.archive.ubuntu.com wily-backports/restricted Sources [28 B]
Get:27 http://eu-central-1.ec2.archive.ubuntu.com wily-backports/universe Sources [1,808 B]
Get:28 http://eu-central-1.ec2.archive.ubuntu.com wily-backports/multiverse Sources [28 B]
Get:29 http://eu-central-1.ec2.archive.ubuntu.com wily-backports/main amd64 Packages [618 B]
Get:30 http://eu-central-1.ec2.archive.ubuntu.com wily-backports/restricted amd64 Packages [28 B]
Get:31 http://eu-central-1.ec2.archive.ubuntu.com wily-backports/universe amd64 Packages [1,685 B]
Get:32 http://eu-central-1.ec2.archive.ubuntu.com wily-backports/multiverse amd64 Packages [28 B]
Get:33 http://eu-central-1.ec2.archive.ubuntu.com wily-backports/main Translation-en [496 B]
Get:34 http://eu-central-1.ec2.archive.ubuntu.com wily-backports/multiverse Translation-en [28 B]
Get:35 http://eu-central-1.ec2.archive.ubuntu.com wily-backports/restricted Translation-en [28 B]
Get:36 http://eu-central-1.ec2.archive.ubuntu.com wily-backports/universe Translation-en [1,245 B]
Get:37 http://security.ubuntu.com wily-security/restricted amd64 Packages [10.9 kB]
Get:38 http://security.ubuntu.com wily-security/universe amd64 Packages [37.1 kB]
Get:39 http://security.ubuntu.com wily-security/multiverse amd64 Packages [5,903 B]
Get:40 http://security.ubuntu.com wily-security/main Translation-en [45.4 kB]
Get:41 http://security.ubuntu.com wily-security/multiverse Translation-en [2,536 B]
Get:42 http://security.ubuntu.com wily-security/restricted Translation-en [2,666 B]
Get:43 http://security.ubuntu.com wily-security/universe Translation-en [24.8 kB]
Fetched 9,370 kB in 3s (2,354 kB/s)
Reading package lists...

package: action=install name=curl
(test-3) Calling .GetSSHHostname
(test-3) Calling .GetSSHPort
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHUsername
Using SSH client type: external
{[-o BatchMode=yes -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none ubuntu@52.29.118.23 -o IdentitiesOnly=yes -i /Users/ilya/.docker/machine/machines/test-3/id_rsa -p 22] /usr/bin/ssh}
About to run SSH command:
DEBIAN_FRONTEND=noninteractive sudo -E apt-get install -y  curl
SSH cmd err, output: <nil>: Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
  libcurl3-gnutls
The following packages will be upgraded:
  curl libcurl3-gnutls
2 upgraded, 0 newly installed, 0 to remove and 71 not upgraded.
Need to get 317 kB of archives.
After this operation, 0 B of additional disk space will be used.
Get:1 http://eu-central-1.ec2.archive.ubuntu.com/ubuntu/ wily-updates/main curl amd64 7.43.0-1ubuntu2.1 [134 kB]
Get:2 http://eu-central-1.ec2.archive.ubuntu.com/ubuntu/ wily-updates/main libcurl3-gnutls amd64 7.43.0-1ubuntu2.1 [183 kB]
Fetched 317 kB in 0s (18.9 MB/s)
(Reading database ... 56208 files and directories currently installed.)
Preparing to unpack .../curl_7.43.0-1ubuntu2.1_amd64.deb ...
Unpacking curl (7.43.0-1ubuntu2.1) over (7.43.0-1ubuntu2) ...
Preparing to unpack .../libcurl3-gnutls_7.43.0-1ubuntu2.1_amd64.deb ...
Unpacking libcurl3-gnutls:amd64 (7.43.0-1ubuntu2.1) over (7.43.0-1ubuntu2) ...
Processing triggers for man-db (2.7.4-1) ...
Setting up libcurl3-gnutls:amd64 (7.43.0-1ubuntu2.1) ...
Setting up curl (7.43.0-1ubuntu2.1) ...
Processing triggers for libc-bin (2.21-0ubuntu4) ...

Installing Docker...
(test-3) Calling .GetSSHHostname
(test-3) Calling .GetSSHPort
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHUsername
Using SSH client type: external
{[-o BatchMode=yes -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none ubuntu@52.29.118.23 -o IdentitiesOnly=yes -i /Users/ilya/.docker/machine/machines/test-3/id_rsa -p 22] /usr/bin/ssh}
About to run SSH command:
if ! type docker; then curl -sSL https://get.docker.com | sh -; fi
SSH cmd err, output: <nil>: bash: line 0: type: docker: not found
modprobe: FATAL: Module aufs not found.
+ sudo -E sh -c sleep 3; apt-get update
Hit http://eu-central-1.ec2.archive.ubuntu.com wily InRelease
Get:1 http://eu-central-1.ec2.archive.ubuntu.com wily-updates InRelease [64.4 kB]
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-backports InRelease
Hit http://eu-central-1.ec2.archive.ubuntu.com wily/main Sources
Hit http://eu-central-1.ec2.archive.ubuntu.com wily/restricted Sources
Hit http://eu-central-1.ec2.archive.ubuntu.com wily/universe Sources
Hit http://eu-central-1.ec2.archive.ubuntu.com wily/multiverse Sources
Hit http://eu-central-1.ec2.archive.ubuntu.com wily/main amd64 Packages
Hit http://eu-central-1.ec2.archive.ubuntu.com wily/restricted amd64 Packages
Hit http://eu-central-1.ec2.archive.ubuntu.com wily/universe amd64 Packages
Hit http://eu-central-1.ec2.archive.ubuntu.com wily/multiverse amd64 Packages
Hit http://eu-central-1.ec2.archive.ubuntu.com wily/main Translation-en
Hit http://eu-central-1.ec2.archive.ubuntu.com wily/multiverse Translation-en
Hit http://eu-central-1.ec2.archive.ubuntu.com wily/restricted Translation-en
Hit http://eu-central-1.ec2.archive.ubuntu.com wily/universe Translation-en
Get:2 http://eu-central-1.ec2.archive.ubuntu.com wily-updates/main Sources [47.1 kB]
Get:3 http://eu-central-1.ec2.archive.ubuntu.com wily-updates/restricted Sources [3,741 B]
Get:4 http://eu-central-1.ec2.archive.ubuntu.com wily-updates/universe Sources [12.8 kB]
Get:5 http://eu-central-1.ec2.archive.ubuntu.com wily-updates/multiverse Sources [1,923 B]
Get:6 http://eu-central-1.ec2.archive.ubuntu.com wily-updates/main amd64 Packages [127 kB]
Get:7 http://eu-central-1.ec2.archive.ubuntu.com wily-updates/restricted amd64 Packages [13.3 kB]
Get:8 http://eu-central-1.ec2.archive.ubuntu.com wily-updates/universe amd64 Packages [54.6 kB]
Get:9 http://eu-central-1.ec2.archive.ubuntu.com wily-updates/multiverse amd64 Packages [5,903 B]
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-updates/main Translation-en
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-updates/multiverse Translation-en
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-updates/restricted Translation-en
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-updates/universe Translation-en
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-backports/main Sources
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-backports/restricted Sources
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-backports/universe Sources
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-backports/multiverse Sources
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-backports/main amd64 Packages
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-backports/restricted amd64 Packages
Hit http://security.ubuntu.com wily-security InRelease
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-backports/universe amd64 Packages
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-backports/multiverse amd64 Packages
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-backports/main Translation-en
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-backports/multiverse Translation-en
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-backports/restricted Translation-en
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-backports/universe Translation-en
Hit http://security.ubuntu.com wily-security/main Sources
Hit http://security.ubuntu.com wily-security/restricted Sources
Hit http://security.ubuntu.com wily-security/universe Sources
Hit http://security.ubuntu.com wily-security/multiverse Sources
Hit http://security.ubuntu.com wily-security/main amd64 Packages
Hit http://security.ubuntu.com wily-security/restricted amd64 Packages
Hit http://security.ubuntu.com wily-security/universe amd64 Packages
Hit http://security.ubuntu.com wily-security/multiverse amd64 Packages
Hit http://security.ubuntu.com wily-security/main Translation-en
Hit http://security.ubuntu.com wily-security/multiverse Translation-en
Hit http://security.ubuntu.com wily-security/restricted Translation-en
Hit http://security.ubuntu.com wily-security/universe Translation-en
Fetched 331 kB in 2s (164 kB/s)
Reading package lists...
+ sudo -E sh -c sleep 3; apt-get install -y -q linux-image-extra-4.2.0-18-generic linux-image-extra-virtual
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
  crda iw libnl-3-200 libnl-genl-3-200 linux-firmware
  linux-image-4.2.0-27-generic linux-image-extra-4.2.0-27-generic
  linux-image-generic thermald wireless-regdb
Suggested packages:
  fdutils linux-doc-4.2.0 linux-source-4.2.0 linux-tools
  linux-headers-4.2.0-27-generic
The following NEW packages will be installed:
  crda iw libnl-3-200 libnl-genl-3-200 linux-firmware
  linux-image-4.2.0-27-generic linux-image-extra-4.2.0-18-generic
  linux-image-extra-4.2.0-27-generic linux-image-extra-virtual
  linux-image-generic thermald wireless-regdb
0 upgraded, 12 newly installed, 0 to remove and 71 not upgraded.
Need to get 125 MB of archives.
After this operation, 484 MB of additional disk space will be used.
Get:1 http://eu-central-1.ec2.archive.ubuntu.com/ubuntu/ wily-updates/main linux-image-4.2.0-27-generic amd64 4.2.0-27.32 [17.4 MB]
Get:2 http://eu-central-1.ec2.archive.ubuntu.com/ubuntu/ wily/main libnl-3-200 amd64 3.2.26-1 [52.6 kB]
Get:3 http://eu-central-1.ec2.archive.ubuntu.com/ubuntu/ wily/main libnl-genl-3-200 amd64 3.2.26-1 [11.5 kB]
Get:4 http://eu-central-1.ec2.archive.ubuntu.com/ubuntu/ wily/main wireless-regdb all 2014.11.18-1ubuntu1 [8,326 B]
Get:5 http://eu-central-1.ec2.archive.ubuntu.com/ubuntu/ wily/main iw amd64 3.17-1 [63.5 kB]
Get:6 http://eu-central-1.ec2.archive.ubuntu.com/ubuntu/ wily/main crda amd64 3.13-1 [60.5 kB]
Get:7 http://eu-central-1.ec2.archive.ubuntu.com/ubuntu/ wily-updates/main linux-firmware all 1.149.3 [29.8 MB]
Get:8 http://eu-central-1.ec2.archive.ubuntu.com/ubuntu/ wily-updates/main linux-image-extra-4.2.0-18-generic amd64 4.2.0-18.22 [38.7 MB]
Get:9 http://eu-central-1.ec2.archive.ubuntu.com/ubuntu/ wily-updates/main linux-image-extra-4.2.0-27-generic amd64 4.2.0-27.32 [38.6 MB]
Get:10 http://eu-central-1.ec2.archive.ubuntu.com/ubuntu/ wily-updates/main linux-image-generic amd64 4.2.0.27.30 [2,332 B]
Get:11 http://eu-central-1.ec2.archive.ubuntu.com/ubuntu/ wily-updates/main linux-image-extra-virtual amd64 4.2.0.27.30 [1,768 B]
Get:12 http://eu-central-1.ec2.archive.ubuntu.com/ubuntu/ wily/main thermald amd64 1.4.3-5 [185 kB]
Fetched 125 MB in 3s (38.7 MB/s)
Selecting previously unselected package linux-image-4.2.0-27-generic.
(Reading database ... 56208 files and directories currently installed.)
Preparing to unpack .../linux-image-4.2.0-27-generic_4.2.0-27.32_amd64.deb ...
Done.
Unpacking linux-image-4.2.0-27-generic (4.2.0-27.32) ...
Selecting previously unselected package libnl-3-200:amd64.
Preparing to unpack .../libnl-3-200_3.2.26-1_amd64.deb ...
Unpacking libnl-3-200:amd64 (3.2.26-1) ...
Selecting previously unselected package libnl-genl-3-200:amd64.
Preparing to unpack .../libnl-genl-3-200_3.2.26-1_amd64.deb ...
Unpacking libnl-genl-3-200:amd64 (3.2.26-1) ...
Selecting previously unselected package wireless-regdb.
Preparing to unpack .../wireless-regdb_2014.11.18-1ubuntu1_all.deb ...
Unpacking wireless-regdb (2014.11.18-1ubuntu1) ...
Selecting previously unselected package iw.
Preparing to unpack .../archives/iw_3.17-1_amd64.deb ...
Unpacking iw (3.17-1) ...
Selecting previously unselected package crda.
Preparing to unpack .../archives/crda_3.13-1_amd64.deb ...
Unpacking crda (3.13-1) ...
Selecting previously unselected package linux-firmware.
Preparing to unpack .../linux-firmware_1.149.3_all.deb ...
Unpacking linux-firmware (1.149.3) ...
Selecting previously unselected package linux-image-extra-4.2.0-18-generic.
Preparing to unpack .../linux-image-extra-4.2.0-18-generic_4.2.0-18.22_amd64.deb ...
Unpacking linux-image-extra-4.2.0-18-generic (4.2.0-18.22) ...
Selecting previously unselected package linux-image-extra-4.2.0-27-generic.
Preparing to unpack .../linux-image-extra-4.2.0-27-generic_4.2.0-27.32_amd64.deb ...
Unpacking linux-image-extra-4.2.0-27-generic (4.2.0-27.32) ...
Selecting previously unselected package linux-image-generic.
Preparing to unpack .../linux-image-generic_4.2.0.27.30_amd64.deb ...
Unpacking linux-image-generic (4.2.0.27.30) ...
Selecting previously unselected package linux-image-extra-virtual.
Preparing to unpack .../linux-image-extra-virtual_4.2.0.27.30_amd64.deb ...
Unpacking linux-image-extra-virtual (4.2.0.27.30) ...
Selecting previously unselected package thermald.
Preparing to unpack .../thermald_1.4.3-5_amd64.deb ...
Unpacking thermald (1.4.3-5) ...
Processing triggers for man-db (2.7.4-1) ...
Processing triggers for dbus (1.10.0-1ubuntu1) ...
Processing triggers for ureadahead (0.100.0-19) ...
Processing triggers for systemd (225-1ubuntu9) ...
Setting up linux-image-4.2.0-27-generic (4.2.0-27.32) ...
Running depmod.
update-initramfs: deferring update (hook will be called later)
Examining /etc/kernel/postinst.d.
run-parts: executing /etc/kernel/postinst.d/apt-auto-removal 4.2.0-27-generic /boot/vmlinuz-4.2.0-27-generic
run-parts: executing /etc/kernel/postinst.d/initramfs-tools 4.2.0-27-generic /boot/vmlinuz-4.2.0-27-generic
update-initramfs: Generating /boot/initrd.img-4.2.0-27-generic
run-parts: executing /etc/kernel/postinst.d/unattended-upgrades 4.2.0-27-generic /boot/vmlinuz-4.2.0-27-generic
run-parts: executing /etc/kernel/postinst.d/update-notifier 4.2.0-27-generic /boot/vmlinuz-4.2.0-27-generic
run-parts: executing /etc/kernel/postinst.d/zz-update-grub 4.2.0-27-generic /boot/vmlinuz-4.2.0-27-generic
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-4.2.0-27-generic
Found initrd image: /boot/initrd.img-4.2.0-27-generic
Found linux image: /boot/vmlinuz-4.2.0-18-generic
Found initrd image: /boot/initrd.img-4.2.0-18-generic
done
Setting up libnl-3-200:amd64 (3.2.26-1) ...
Setting up libnl-genl-3-200:amd64 (3.2.26-1) ...
Setting up wireless-regdb (2014.11.18-1ubuntu1) ...
Setting up iw (3.17-1) ...
Setting up crda (3.13-1) ...
Setting up linux-firmware (1.149.3) ...
Setting up linux-image-extra-4.2.0-18-generic (4.2.0-18.22) ...
run-parts: executing /etc/kernel/postinst.d/apt-auto-removal 4.2.0-18-generic /boot/vmlinuz-4.2.0-18-generic
run-parts: executing /etc/kernel/postinst.d/initramfs-tools 4.2.0-18-generic /boot/vmlinuz-4.2.0-18-generic
update-initramfs: Generating /boot/initrd.img-4.2.0-18-generic
run-parts: executing /etc/kernel/postinst.d/unattended-upgrades 4.2.0-18-generic /boot/vmlinuz-4.2.0-18-generic
run-parts: executing /etc/kernel/postinst.d/update-notifier 4.2.0-18-generic /boot/vmlinuz-4.2.0-18-generic
run-parts: executing /etc/kernel/postinst.d/zz-update-grub 4.2.0-18-generic /boot/vmlinuz-4.2.0-18-generic
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-4.2.0-27-generic
Found initrd image: /boot/initrd.img-4.2.0-27-generic
Found linux image: /boot/vmlinuz-4.2.0-18-generic
Found initrd image: /boot/initrd.img-4.2.0-18-generic
done
Setting up linux-image-extra-4.2.0-27-generic (4.2.0-27.32) ...
run-parts: executing /etc/kernel/postinst.d/apt-auto-removal 4.2.0-27-generic /boot/vmlinuz-4.2.0-27-generic
run-parts: executing /etc/kernel/postinst.d/initramfs-tools 4.2.0-27-generic /boot/vmlinuz-4.2.0-27-generic
update-initramfs: Generating /boot/initrd.img-4.2.0-27-generic
run-parts: executing /etc/kernel/postinst.d/unattended-upgrades 4.2.0-27-generic /boot/vmlinuz-4.2.0-27-generic
run-parts: executing /etc/kernel/postinst.d/update-notifier 4.2.0-27-generic /boot/vmlinuz-4.2.0-27-generic
run-parts: executing /etc/kernel/postinst.d/zz-update-grub 4.2.0-27-generic /boot/vmlinuz-4.2.0-27-generic
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-4.2.0-27-generic
Found initrd image: /boot/initrd.img-4.2.0-27-generic
Found linux image: /boot/vmlinuz-4.2.0-18-generic
Found initrd image: /boot/initrd.img-4.2.0-18-generic
done
Setting up linux-image-generic (4.2.0.27.30) ...
Setting up linux-image-extra-virtual (4.2.0.27.30) ...
Setting up thermald (1.4.3-5) ...
Processing triggers for libc-bin (2.21-0ubuntu4) ...
Processing triggers for dbus (1.10.0-1ubuntu1) ...
Processing triggers for ureadahead (0.100.0-19) ...
Processing triggers for systemd (225-1ubuntu9) ...
apparmor is enabled in the kernel and apparmor utils were already installed
+ sudo -E sh -c apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D
Executing: gpg --ignore-time-conflict --no-options --no-default-keyring --homedir /tmp/tmp.8pG1fYDf1z --no-auto-check-trustdb --trust-model always --keyring /etc/apt/trusted.gpg --primary-keyring /etc/apt/trusted.gpg --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D
gpg: requesting key 2C52609D from hkp server p80.pool.sks-keyservers.net
gpg: key 2C52609D: public key "Docker Release Tool (releasedocker) <docker@docker.com>" imported
gpg: Total number processed: 1
gpg:               imported: 1  (RSA: 1)
+ sudo -E sh -c mkdir -p /etc/apt/sources.list.d
+ dpkg --print-architecture
+ sudo -E sh -c echo deb [arch=amd64] https://apt.dockerproject.org/repo ubuntu-wily main > /etc/apt/sources.list.d/docker.list
+ sudo -E sh -c sleep 3; apt-get update; apt-get install -y -q docker-engine
Hit http://eu-central-1.ec2.archive.ubuntu.com wily InRelease
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-updates InRelease
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-backports InRelease
Hit http://security.ubuntu.com wily-security InRelease
Hit http://eu-central-1.ec2.archive.ubuntu.com wily/main Sources
Hit http://eu-central-1.ec2.archive.ubuntu.com wily/restricted Sources
Hit http://eu-central-1.ec2.archive.ubuntu.com wily/universe Sources
Hit http://eu-central-1.ec2.archive.ubuntu.com wily/multiverse Sources
Hit http://eu-central-1.ec2.archive.ubuntu.com wily/main amd64 Packages
Hit http://eu-central-1.ec2.archive.ubuntu.com wily/restricted amd64 Packages
Hit http://eu-central-1.ec2.archive.ubuntu.com wily/universe amd64 Packages
Hit http://eu-central-1.ec2.archive.ubuntu.com wily/multiverse amd64 Packages
Hit http://eu-central-1.ec2.archive.ubuntu.com wily/main Translation-en
Hit http://eu-central-1.ec2.archive.ubuntu.com wily/multiverse Translation-en
Hit http://eu-central-1.ec2.archive.ubuntu.com wily/restricted Translation-en
Hit http://eu-central-1.ec2.archive.ubuntu.com wily/universe Translation-en
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-updates/main Sources
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-updates/restricted Sources
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-updates/universe Sources
Hit http://security.ubuntu.com wily-security/main Sources
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-updates/multiverse Sources
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-updates/main amd64 Packages
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-updates/restricted amd64 Packages
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-updates/universe amd64 Packages
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-updates/multiverse amd64 Packages
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-updates/main Translation-en
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-updates/multiverse Translation-en
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-updates/restricted Translation-en
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-updates/universe Translation-en
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-backports/main Sources
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-backports/restricted Sources
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-backports/universe Sources
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-backports/multiverse Sources
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-backports/main amd64 Packages
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-backports/restricted amd64 Packages
Hit http://security.ubuntu.com wily-security/restricted Sources
Hit http://security.ubuntu.com wily-security/universe Sources
Hit http://security.ubuntu.com wily-security/multiverse Sources
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-backports/universe amd64 Packages
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-backports/multiverse amd64 Packages
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-backports/main Translation-en
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-backports/multiverse Translation-en
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-backports/restricted Translation-en
Hit http://eu-central-1.ec2.archive.ubuntu.com wily-backports/universe Translation-en
Hit http://security.ubuntu.com wily-security/main amd64 Packages
Hit http://security.ubuntu.com wily-security/restricted amd64 Packages
Hit http://security.ubuntu.com wily-security/universe amd64 Packages
Hit http://security.ubuntu.com wily-security/multiverse amd64 Packages
Hit http://security.ubuntu.com wily-security/main Translation-en
Hit http://security.ubuntu.com wily-security/multiverse Translation-en
Hit http://security.ubuntu.com wily-security/restricted Translation-en
Hit http://security.ubuntu.com wily-security/universe Translation-en
Get:1 https://apt.dockerproject.org ubuntu-wily InRelease [454 B]
Ign https://apt.dockerproject.org ubuntu-wily InRelease
Get:2 https://apt.dockerproject.org ubuntu-wily Release.gpg [801 B]
Get:3 https://apt.dockerproject.org ubuntu-wily Release [19.7 kB]
Get:4 https://apt.dockerproject.org ubuntu-wily/main amd64 Packages [3,612 B]
Get:5 https://apt.dockerproject.org ubuntu-wily/main Translation-en_US [454 B]
Get:6 https://apt.dockerproject.org ubuntu-wily/main Translation-en [454 B]
Get:7 https://apt.dockerproject.org ubuntu-wily/main Translation-en_US [454 B]
Get:8 https://apt.dockerproject.org ubuntu-wily/main Translation-en [454 B]
Get:9 https://apt.dockerproject.org ubuntu-wily/main Translation-en_US [454 B]
Get:10 https://apt.dockerproject.org ubuntu-wily/main Translation-en [454 B]
Get:11 https://apt.dockerproject.org ubuntu-wily/main Translation-en_US [454 B]
Get:12 https://apt.dockerproject.org ubuntu-wily/main Translation-en [454 B]
Get:13 https://apt.dockerproject.org ubuntu-wily/main Translation-en_US [454 B]
Ign https://apt.dockerproject.org ubuntu-wily/main Translation-en_US
Get:14 https://apt.dockerproject.org ubuntu-wily/main Translation-en [454 B]
Ign https://apt.dockerproject.org ubuntu-wily/main Translation-en
Fetched 24.2 kB in 2s (10.9 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
  aufs-tools cgroupfs-mount
Recommended packages:
  yubico-piv-tool
The following NEW packages will be installed:
  aufs-tools cgroupfs-mount docker-engine
0 upgraded, 3 newly installed, 0 to remove and 71 not upgraded.
Need to get 8,918 kB of archives.
After this operation, 44.1 MB of additional disk space will be used.
Get:1 http://eu-central-1.ec2.archive.ubuntu.com/ubuntu/ wily/universe aufs-tools amd64 1:3.2+20130722-1.1 [92.3 kB]
Get:2 http://eu-central-1.ec2.archive.ubuntu.com/ubuntu/ wily/universe cgroupfs-mount all 1.2 [4,970 B]
Get:3 https://apt.dockerproject.org/repo/ ubuntu-wily/main docker-engine amd64 1.10.0-0~wily [8,821 kB]
Fetched 8,918 kB in 0s (22.5 MB/s)
Selecting previously unselected package aufs-tools.
(Reading database ... 67256 files and directories currently installed.)
Preparing to unpack .../aufs-tools_1%3a3.2+20130722-1.1_amd64.deb ...
Unpacking aufs-tools (1:3.2+20130722-1.1) ...
Selecting previously unselected package cgroupfs-mount.
Preparing to unpack .../cgroupfs-mount_1.2_all.deb ...
Unpacking cgroupfs-mount (1.2) ...
Selecting previously unselected package docker-engine.
Preparing to unpack .../docker-engine_1.10.0-0~wily_amd64.deb ...
Unpacking docker-engine (1.10.0-0~wily) ...
Processing triggers for man-db (2.7.4-1) ...
Processing triggers for ureadahead (0.100.0-19) ...
Processing triggers for systemd (225-1ubuntu9) ...
Setting up aufs-tools (1:3.2+20130722-1.1) ...
Setting up cgroupfs-mount (1.2) ...
Setting up docker-engine (1.10.0-0~wily) ...
Processing triggers for libc-bin (2.21-0ubuntu4) ...
Processing triggers for ureadahead (0.100.0-19) ...
Processing triggers for systemd (225-1ubuntu9) ...
Client:
 Version:      1.10.0
 API version:  1.22
 Go version:   go1.5.3
 Git commit:   590d5108
 Built:        + sudo -E sh -c docker version
Thu Feb  4 18:41:30 2016
 OS/Arch:      linux/amd64

Server:
 Version:      1.10.0
 API version:  1.22
 Go version:   go1.5.3
 Git commit:   590d5108
 Built:        Thu Feb  4 18:41:30 2016
 OS/Arch:      linux/amd64

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 ubuntu

Remember that you will have to log out and back in for this to take effect!

waiting for docker daemon
checking docker daemon
(test-3) Calling .GetSSHHostname
(test-3) Calling .GetSSHPort
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHUsername
Using SSH client type: external
{[-o BatchMode=yes -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none ubuntu@52.29.118.23 -o IdentitiesOnly=yes -i /Users/ilya/.docker/machine/machines/test-3/id_rsa -p 22] /usr/bin/ssh}
About to run SSH command:
sudo docker version
SSH cmd err, output: <nil>: Client:
 Version:      1.10.0
 API version:  1.22
 Go version:   go1.5.3
 Git commit:   590d5108
 Built:        Thu Feb  4 18:41:30 2016
 OS/Arch:      linux/amd64

Server:
 Version:      1.10.0
 API version:  1.22
 Go version:   go1.5.3
 Git commit:   590d5108
 Built:        Thu Feb  4 18:41:30 2016
 OS/Arch:      linux/amd64

configuring auth
(test-3) Calling .GetMachineName
(test-3) Calling .GetIP
Copying certs to the local machine directory...
generating server cert: /Users/ilya/.docker/machine/machines/test-3/server.pem ca-key=/Users/ilya/.docker/machine/certs/ca.pem private-key=/Users/ilya/.docker/machine/certs/ca-key.pem org=ilya.test-3 san=[52.29.118.23 localhost]
(test-3) Calling .GetSSHHostname
(test-3) Calling .GetSSHPort
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHUsername
Using SSH client type: external
{[-o BatchMode=yes -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none ubuntu@52.29.118.23 -o IdentitiesOnly=yes -i /Users/ilya/.docker/machine/machines/test-3/id_rsa -p 22] /usr/bin/ssh}
About to run SSH command:
sudo systemctl -f stop docker
SSH cmd err, output: <nil>: 
(test-3) Calling .GetSSHHostname
(test-3) Calling .GetSSHPort
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHUsername
Using SSH client type: external
{[-o BatchMode=yes -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none ubuntu@52.29.118.23 -o IdentitiesOnly=yes -i /Users/ilya/.docker/machine/machines/test-3/id_rsa -p 22] /usr/bin/ssh}
About to run SSH command:
if [ ! -z "$(ip link show docker0)" ]; then sudo ip link delete docker0; fi
SSH cmd err, output: <nil>: 
Copying certs to the remote machine...
(test-3) Calling .GetSSHHostname
(test-3) Calling .GetSSHPort
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHUsername
Using SSH client type: external
{[-o BatchMode=yes -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none ubuntu@52.29.118.23 -o IdentitiesOnly=yes -i /Users/ilya/.docker/machine/machines/test-3/id_rsa -p 22] /usr/bin/ssh}
About to run SSH command:
printf '%s' '-----BEGIN CERTIFICATE-----
MIICxzCCAbGgAwIBAgIQeaVRAxuDcOVp3LL5G5G3ejALBgkqhkiG9w0BAQswDzEN
MAsGA1UEChMEaWx5YTAeFw0xNTEwMjMxODUwMDBaFw0xODEwMDcxODUwMDBaMA8x
DTALBgNVBAoTBGlseWEwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC1
1hAu9buKIx12Q+zC/mpeLzs5gHpIq78KlxpPw1JcKRcC3qtmh5mkuTUvzUJQC0p3
T4uksAoC4SmzZgDw1Ta02r216esjIy6nuxzQ5WRHk+zIXUx+ICAXNOKj4Kozpk/f
Zluyc9kW6LdZjbDn221MojEZkIdZ8CX/M3A3xYw2C0/DbCwOO0I1qZbcQSuBgTqJ
ZoOQUuPBhIIHmtexuceMlrJlFJF5fk4MEtIJ4aqczbMf/qbsy9NPDw1kdHPnWY1W
pDUt6GlpTbZITzVmDXDzYy36ztDRqFmyAUVWP3w1Tmm9754zSc9wlVmzOCgnufwH
BOlSvUnPuxhE+t4PI9OJAgMBAAGjIzAhMA4GA1UdDwEB/wQEAwIArDAPBgNVHRMB
Af8EBTADAQH/MAsGCSqGSIb3DQEBCwOCAQEAo66ITHEygFXyalu87kCPiMTXpqQ8
krsJNFhJ5sxg3f0Q7Zw9/WPlU0uMYtXJA8jlLhzMCFZl9mgneko/aFPDNVSjhMay
RIl+phE/0HkwljCHqVprigJ5I7uWrGF2v2cjXwUEGB4sca3Bgb/2tz5qiY0blNxb
p6Ngi0HLgsuTnenC3l+UZt+Y4gzFflQtQPzHGl8mog0uTEpb/Lw62oetXsdz1c1c
jDqjDT9jhfJ+30G/1H2n29Srff8R5EuEmPjaBtLfpXGs5sSSq9uYp8+drouqrvfo
/6qCQYTM4sOQz6K2CuuQr28F0w9w16rCjSB7EZcyi+suGFEthH8bSrB70w==
-----END CERTIFICATE-----
' | sudo tee /etc/docker/ca.pem
SSH cmd err, output: <nil>: -----BEGIN CERTIFICATE-----
MIICxzCCAbGgAwIBAgIQeaVRAxuDcOVp3LL5G5G3ejALBgkqhkiG9w0BAQswDzEN
MAsGA1UEChMEaWx5YTAeFw0xNTEwMjMxODUwMDBaFw0xODEwMDcxODUwMDBaMA8x
DTALBgNVBAoTBGlseWEwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC1
1hAu9buKIx12Q+zC/mpeLzs5gHpIq78KlxpPw1JcKRcC3qtmh5mkuTUvzUJQC0p3
T4uksAoC4SmzZgDw1Ta02r216esjIy6nuxzQ5WRHk+zIXUx+ICAXNOKj4Kozpk/f
Zluyc9kW6LdZjbDn221MojEZkIdZ8CX/M3A3xYw2C0/DbCwOO0I1qZbcQSuBgTqJ
ZoOQUuPBhIIHmtexuceMlrJlFJF5fk4MEtIJ4aqczbMf/qbsy9NPDw1kdHPnWY1W
pDUt6GlpTbZITzVmDXDzYy36ztDRqFmyAUVWP3w1Tmm9754zSc9wlVmzOCgnufwH
BOlSvUnPuxhE+t4PI9OJAgMBAAGjIzAhMA4GA1UdDwEB/wQEAwIArDAPBgNVHRMB
Af8EBTADAQH/MAsGCSqGSIb3DQEBCwOCAQEAo66ITHEygFXyalu87kCPiMTXpqQ8
krsJNFhJ5sxg3f0Q7Zw9/WPlU0uMYtXJA8jlLhzMCFZl9mgneko/aFPDNVSjhMay
RIl+phE/0HkwljCHqVprigJ5I7uWrGF2v2cjXwUEGB4sca3Bgb/2tz5qiY0blNxb
p6Ngi0HLgsuTnenC3l+UZt+Y4gzFflQtQPzHGl8mog0uTEpb/Lw62oetXsdz1c1c
jDqjDT9jhfJ+30G/1H2n29Srff8R5EuEmPjaBtLfpXGs5sSSq9uYp8+drouqrvfo
/6qCQYTM4sOQz6K2CuuQr28F0w9w16rCjSB7EZcyi+suGFEthH8bSrB70w==
-----END CERTIFICATE-----

(test-3) Calling .GetSSHHostname
(test-3) Calling .GetSSHPort
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHUsername
Using SSH client type: external
{[-o BatchMode=yes -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none ubuntu@52.29.118.23 -o IdentitiesOnly=yes -i /Users/ilya/.docker/machine/machines/test-3/id_rsa -p 22] /usr/bin/ssh}
About to run SSH command:
printf '%s' '-----BEGIN CERTIFICATE-----
MIIDCjCCAfKgAwIBAgIQcyzTInKR7PlCaEdJN5TNizANBgkqhkiG9w0BAQsFADAP
MQ0wCwYDVQQKEwRpbHlhMB4XDTE2MDIwNzEyMjkwMFoXDTE5MDEyMjEyMjkwMFow
FjEUMBIGA1UEChMLaWx5YS50ZXN0LTMwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAw
ggEKAoIBAQChtmc4P/DYjsCqBbX9n1WqxMj/KirmtIddDdDCXYeOeaOPVXzbjWN5
4CzalX9nDFPMUVPbbcJeu3G7yxg3UOzVCkAxmr6Kn5ewNItFwzFdrcw9865YGmSd
lq4dlPTHnc49wGkSfSvtoadCIjmgfGyfp2x9HGGnqdll/QwcSgYHJPPkUks8sfHN
uEloONo7F2Qua9S9vCjBDNxViMIhYzo56OPEHOUYa1ta47X2MOXjUkZFRHt8Eots
Y1l3+zZ8ZQEEQjeaDoJsgYVA83UhosjLD2x7neXuK95Fid4Kz2B27NbkYSy75Iz6
0ogMRVqNYSnx7ZvNaZsBgIhV38xU17cpAgMBAAGjWzBZMA4GA1UdDwEB/wQEAwID
qDAdBgNVHSUEFjAUBggrBgEFBQcDAgYIKwYBBQUHAwEwDAYDVR0TAQH/BAIwADAa
BgNVHREEEzARgglsb2NhbGhvc3SHBDQddhcwDQYJKoZIhvcNAQELBQADggEBAFUU
bmWlfkq68JyCYkiWkH0j/uK91rBo/D6ZyWh4BJ6pMdM/smsVCDHc52oFtkYsKPiu
1Goy5FtnUmc+TqH1jP/pDTOPIir8nyHsTrBUH5MlTDpdIdEswfMFZmvoZ0cFqCQZ
XkGX0jLA2F9fTHJGOpBEIm4wQHuQ713URL27i/1B8mzl+8Um0f3a4j8oTkcxB1MD
Ck02rBFg55ohA3BNME0i1ONn3uNX0s2XRK4vv3iMA4Dn1AiJ51+4yBiQ9Tb454YO
1Tt9t8h6HYVKnNT+pDD10JF8hpnXuaW7P/Em2iqmqKOagb4hauIpo7x44nvZiFBP
Yz75957Igtjj7DEvVo8=
-----END CERTIFICATE-----
' | sudo tee /etc/docker/server.pem
SSH cmd err, output: <nil>: -----BEGIN CERTIFICATE-----
MIIDCjCCAfKgAwIBAgIQcyzTInKR7PlCaEdJN5TNizANBgkqhkiG9w0BAQsFADAP
MQ0wCwYDVQQKEwRpbHlhMB4XDTE2MDIwNzEyMjkwMFoXDTE5MDEyMjEyMjkwMFow
FjEUMBIGA1UEChMLaWx5YS50ZXN0LTMwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAw
ggEKAoIBAQChtmc4P/DYjsCqBbX9n1WqxMj/KirmtIddDdDCXYeOeaOPVXzbjWN5
4CzalX9nDFPMUVPbbcJeu3G7yxg3UOzVCkAxmr6Kn5ewNItFwzFdrcw9865YGmSd
lq4dlPTHnc49wGkSfSvtoadCIjmgfGyfp2x9HGGnqdll/QwcSgYHJPPkUks8sfHN
uEloONo7F2Qua9S9vCjBDNxViMIhYzo56OPEHOUYa1ta47X2MOXjUkZFRHt8Eots
Y1l3+zZ8ZQEEQjeaDoJsgYVA83UhosjLD2x7neXuK95Fid4Kz2B27NbkYSy75Iz6
0ogMRVqNYSnx7ZvNaZsBgIhV38xU17cpAgMBAAGjWzBZMA4GA1UdDwEB/wQEAwID
qDAdBgNVHSUEFjAUBggrBgEFBQcDAgYIKwYBBQUHAwEwDAYDVR0TAQH/BAIwADAa
BgNVHREEEzARgglsb2NhbGhvc3SHBDQddhcwDQYJKoZIhvcNAQELBQADggEBAFUU
bmWlfkq68JyCYkiWkH0j/uK91rBo/D6ZyWh4BJ6pMdM/smsVCDHc52oFtkYsKPiu
1Goy5FtnUmc+TqH1jP/pDTOPIir8nyHsTrBUH5MlTDpdIdEswfMFZmvoZ0cFqCQZ
XkGX0jLA2F9fTHJGOpBEIm4wQHuQ713URL27i/1B8mzl+8Um0f3a4j8oTkcxB1MD
Ck02rBFg55ohA3BNME0i1ONn3uNX0s2XRK4vv3iMA4Dn1AiJ51+4yBiQ9Tb454YO
1Tt9t8h6HYVKnNT+pDD10JF8hpnXuaW7P/Em2iqmqKOagb4hauIpo7x44nvZiFBP
Yz75957Igtjj7DEvVo8=
-----END CERTIFICATE-----

(test-3) Calling .GetSSHHostname
(test-3) Calling .GetSSHPort
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHUsername
Using SSH client type: external
{[-o BatchMode=yes -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none ubuntu@52.29.118.23 -o IdentitiesOnly=yes -i /Users/ilya/.docker/machine/machines/test-3/id_rsa -p 22] /usr/bin/ssh}
About to run SSH command:
printf '%s' '-----BEGIN RSA PRIVATE KEY-----
MIIEpAIBAAKCAQEAobZnOD/w2I7AqgW1/Z9VqsTI/yoq5rSHXQ3Qwl2Hjnmjj1V8
241jeeAs2pV/ZwxTzFFT223CXrtxu8sYN1Ds1QpAMZq+ip+XsDSLRcMxXa3MPfOu
WBpknZauHZT0x53OPcBpEn0r7aGnQiI5oHxsn6dsfRxhp6nZZf0MHEoGByTz5FJL
PLHxzbhJaDjaOxdkLmvUvbwowQzcVYjCIWM6OejjxBzlGGtbWuO19jDl41JGRUR7
fBKLbGNZd/s2fGUBBEI3mg6CbIGFQPN1IaLIyw9se53l7iveRYneCs9gduzW5GEs
u+SM+tKIDEVajWEp8e2bzWmbAYCIVd/MVNe3KQIDAQABAoIBAGPenFyW0I1NjBr0
r/JUJrnyEhfT2O7l6vtC/vwqev84jBSHPTbyWM757XmI/keLy2zRhTJs1K9gn9rU
kL4I0lq3m/GGmcpOyYVezexloeUy4oIYLkHm+uCAIEPQrGNjR+3HGJz8hNabEQq8
zE4ayZLH+S5DCuRa9xIPdx05cgOSiS8A7bcHSwueUteZVnpWZYU+XOMi9JAhj2vT
4Sd/6HqFJ6CJZMCyt/E5Gs+vJA8Fk7rjoKlMUJ22m1/yvqFOk3ZLfhKQqnPHZUCs
sNaqoai1IHbucZqKnj6HmlcC5XfARXj/iTNYTPAXDBUvciO4UGRgHtF9UT/tRFDC
Cr5PiiECgYEAw1Se0/8u6NCaf6inyJqjW2uC+IJT8M2Ah0sGMkYH8kOxy2AKmcPh
ZAMVmWcYXpssMSh3oQV7mzY4gVhuVUZzaQd+xAc8wmcigmSSYxX7Y1027Vx7ZATx
8XXCSdlzzf4cIei+oPcWLyyWU+NDhQSJb3L93iYr9+fhAsGQ/1DetDUCgYEA0/Cz
hkTUc17Kr8px0pforoFVDkQv8K++LSi/h3lJSvUHRuhCLesNmVpniB4ktk0cIn5M
brQwfFlj4GsO19ltCodJ5PS59iKhu+F3AkMj/CWB6XH/9OgmTL4iOVX/SWNjPOmw
06Dez0y/tosS3Ywdvv6zAAsgBMA/Nw9dngSnbaUCgYBtKNAuJ3D+uP1ulEFX8VuT
joy99o+UhjPq5/mJhOuR71TgFEc4UWiXbMXYWe4biNp0imn4ecjvH6kKV/IpA9sh
egfU4zqIZfy6JBxO9Yzspb45fjKS3dScHTQ78yMtnnH4XUqTSCKEsIU+UkZ8guGP
gBLx4CE4RMTRtn0iwf4DdQKBgQC45SZZHrcRJ0M/9Sczh98wThg75/TCzy7kCsZ8
k60DPZxpmboSgRtOC/aCY3m3qLHAzdo0QfKCqSFe6Ub7u+1K4BfxLCcHudLLK7k9
OgGsubQKSq/3ooe3L7B/wKyEA7bRrzXail+XDee6gr2kldZlh6H1ib8XJfiAOmF7
t6exGQKBgQCq9KrI1zPrFrYiZvZW6XQip2Iu/FT3CwRlvdqc96z7FS8D942BMg60
xgfViwXXdeeDfAQPUYEWKMnRidhm62AQOoNVxUdc5RtlwMGQInQtUvsn+BfXYzyc
rKU699nlhDwlggFG03UTUyUsiQiSkzJp3LqC0sHa90z/ptWigaHf6Q==
-----END RSA PRIVATE KEY-----
' | sudo tee /etc/docker/server-key.pem
SSH cmd err, output: <nil>: -----BEGIN RSA PRIVATE KEY-----
MIIEpAIBAAKCAQEAobZnOD/w2I7AqgW1/Z9VqsTI/yoq5rSHXQ3Qwl2Hjnmjj1V8
241jeeAs2pV/ZwxTzFFT223CXrtxu8sYN1Ds1QpAMZq+ip+XsDSLRcMxXa3MPfOu
WBpknZauHZT0x53OPcBpEn0r7aGnQiI5oHxsn6dsfRxhp6nZZf0MHEoGByTz5FJL
PLHxzbhJaDjaOxdkLmvUvbwowQzcVYjCIWM6OejjxBzlGGtbWuO19jDl41JGRUR7
fBKLbGNZd/s2fGUBBEI3mg6CbIGFQPN1IaLIyw9se53l7iveRYneCs9gduzW5GEs
u+SM+tKIDEVajWEp8e2bzWmbAYCIVd/MVNe3KQIDAQABAoIBAGPenFyW0I1NjBr0
r/JUJrnyEhfT2O7l6vtC/vwqev84jBSHPTbyWM757XmI/keLy2zRhTJs1K9gn9rU
kL4I0lq3m/GGmcpOyYVezexloeUy4oIYLkHm+uCAIEPQrGNjR+3HGJz8hNabEQq8
zE4ayZLH+S5DCuRa9xIPdx05cgOSiS8A7bcHSwueUteZVnpWZYU+XOMi9JAhj2vT
4Sd/6HqFJ6CJZMCyt/E5Gs+vJA8Fk7rjoKlMUJ22m1/yvqFOk3ZLfhKQqnPHZUCs
sNaqoai1IHbucZqKnj6HmlcC5XfARXj/iTNYTPAXDBUvciO4UGRgHtF9UT/tRFDC
Cr5PiiECgYEAw1Se0/8u6NCaf6inyJqjW2uC+IJT8M2Ah0sGMkYH8kOxy2AKmcPh
ZAMVmWcYXpssMSh3oQV7mzY4gVhuVUZzaQd+xAc8wmcigmSSYxX7Y1027Vx7ZATx
8XXCSdlzzf4cIei+oPcWLyyWU+NDhQSJb3L93iYr9+fhAsGQ/1DetDUCgYEA0/Cz
hkTUc17Kr8px0pforoFVDkQv8K++LSi/h3lJSvUHRuhCLesNmVpniB4ktk0cIn5M
brQwfFlj4GsO19ltCodJ5PS59iKhu+F3AkMj/CWB6XH/9OgmTL4iOVX/SWNjPOmw
06Dez0y/tosS3Ywdvv6zAAsgBMA/Nw9dngSnbaUCgYBtKNAuJ3D+uP1ulEFX8VuT
joy99o+UhjPq5/mJhOuR71TgFEc4UWiXbMXYWe4biNp0imn4ecjvH6kKV/IpA9sh
egfU4zqIZfy6JBxO9Yzspb45fjKS3dScHTQ78yMtnnH4XUqTSCKEsIU+UkZ8guGP
gBLx4CE4RMTRtn0iwf4DdQKBgQC45SZZHrcRJ0M/9Sczh98wThg75/TCzy7kCsZ8
k60DPZxpmboSgRtOC/aCY3m3qLHAzdo0QfKCqSFe6Ub7u+1K4BfxLCcHudLLK7k9
OgGsubQKSq/3ooe3L7B/wKyEA7bRrzXail+XDee6gr2kldZlh6H1ib8XJfiAOmF7
t6exGQKBgQCq9KrI1zPrFrYiZvZW6XQip2Iu/FT3CwRlvdqc96z7FS8D942BMg60
xgfViwXXdeeDfAQPUYEWKMnRidhm62AQOoNVxUdc5RtlwMGQInQtUvsn+BfXYzyc
rKU699nlhDwlggFG03UTUyUsiQiSkzJp3LqC0sHa90z/ptWigaHf6Q==
-----END RSA PRIVATE KEY-----

(test-3) Calling .GetURL
(test-3) Calling .DriverName
Setting Docker configuration on the remote daemon...
(test-3) Calling .GetSSHHostname
(test-3) Calling .GetSSHPort
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHUsername
Using SSH client type: external
{[-o BatchMode=yes -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none ubuntu@52.29.118.23 -o IdentitiesOnly=yes -i /Users/ilya/.docker/machine/machines/test-3/id_rsa -p 22] /usr/bin/ssh}
About to run SSH command:
printf %s "[Service]
ExecStart=/usr/bin/docker -d -H tcp://0.0.0.0:2376 -H unix:///var/run/docker.sock --storage-driver aufs --tlsverify --tlscacert /etc/docker/ca.pem --tlscert /etc/docker/server.pem --tlskey /etc/docker/server-key.pem --label provider=amazonec2 
MountFlags=slave
LimitNOFILE=1048576
LimitNPROC=1048576
LimitCORE=infinity
Environment=

[Install]
WantedBy=multi-user.target
" | sudo tee /etc/systemd/system/docker.service
SSH cmd err, output: <nil>: [Service]
ExecStart=/usr/bin/docker -d -H tcp://0.0.0.0:2376 -H unix:///var/run/docker.sock --storage-driver aufs --tlsverify --tlscacert /etc/docker/ca.pem --tlscert /etc/docker/server.pem --tlskey /etc/docker/server-key.pem --label provider=amazonec2 
MountFlags=slave
LimitNOFILE=1048576
LimitNPROC=1048576
LimitCORE=infinity
Environment=

[Install]
WantedBy=multi-user.target

(test-3) Calling .GetSSHHostname
(test-3) Calling .GetSSHPort
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHUsername
Using SSH client type: external
{[-o BatchMode=yes -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none ubuntu@52.29.118.23 -o IdentitiesOnly=yes -i /Users/ilya/.docker/machine/machines/test-3/id_rsa -p 22] /usr/bin/ssh}
About to run SSH command:
sudo systemctl daemon-reload
SSH cmd err, output: <nil>: 
(test-3) Calling .GetSSHHostname
(test-3) Calling .GetSSHPort
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHUsername
Using SSH client type: external
{[-o BatchMode=yes -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none ubuntu@52.29.118.23 -o IdentitiesOnly=yes -i /Users/ilya/.docker/machine/machines/test-3/id_rsa -p 22] /usr/bin/ssh}
About to run SSH command:
sudo systemctl -f start docker
SSH cmd err, output: <nil>: 
(test-3) Calling .GetSSHHostname
(test-3) Calling .GetSSHPort
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHUsername
Using SSH client type: external
{[-o BatchMode=yes -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none ubuntu@52.29.118.23 -o IdentitiesOnly=yes -i /Users/ilya/.docker/machine/machines/test-3/id_rsa -p 22] /usr/bin/ssh}
About to run SSH command:
netstat -an
SSH cmd err, output: <nil>: Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State      
tcp        0      0 10.0.3.1:53             0.0.0.0:*               LISTEN     
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN     
tcp        0      0 172.31.0.37:59748       52.28.64.56:80          TIME_WAIT  
tcp        0      0 172.31.0.37:44772       52.28.81.96:80          TIME_WAIT  
tcp        0      0 172.31.0.37:33790       91.189.88.149:80        TIME_WAIT  
tcp        0     72 172.31.0.37:22          82.22.129.232:63936     ESTABLISHED
tcp6       0      0 fe80::d024:eeff:fee5:53 :::*                    LISTEN     
tcp6       0      0 :::22                   :::*                    LISTEN     
udp        0      0 0.0.0.0:30771           0.0.0.0:*                          
udp        0      0 10.0.3.1:53             0.0.0.0:*                          
udp        0      0 0.0.0.0:67              0.0.0.0:*                          
udp        0      0 0.0.0.0:68              0.0.0.0:*                          
udp6       0      0 fe80::d024:eeff:fee5:53 :::*                               
udp6       0      0 :::28829                :::*                               
Active UNIX domain sockets (servers and established)
Proto RefCnt Flags       Type       State         I-Node   Path
unix  7      [ ]         DGRAM                    8040     /run/systemd/journal/dev-log
unix  2      [ ACC ]     STREAM     LISTENING     8041     /run/systemd/journal/stdout
unix  7      [ ]         DGRAM                    8042     /run/systemd/journal/socket
unix  2      [ ]         DGRAM                    38514    /run/user/1000/systemd/notify
unix  2      [ ACC ]     STREAM     LISTENING     38515    /run/user/1000/systemd/private
unix  2      [ ACC ]     SEQPACKET  LISTENING     8274     /run/udev/control
unix  2      [ ]         DGRAM                    8416     /run/systemd/journal/syslog
unix  2      [ ACC ]     STREAM     LISTENING     10983    /sys/fs/cgroup/cgmanager/sock
unix  2      [ ACC ]     STREAM     LISTENING     10229    /var/lib/lxd/unix.socket
unix  2      [ ACC ]     STREAM     LISTENING     10226    /run/uuidd/request
unix  2      [ ACC ]     STREAM     LISTENING     10227    /var/run/dbus/system_bus_socket
unix  2      [ ACC ]     STREAM     LISTENING     10271    /run/acpid.socket
unix  2      [ ]         DGRAM                    8031     /run/systemd/notify
unix  2      [ ACC ]     STREAM     LISTENING     8032     /run/systemd/private
unix  2      [ ]         DGRAM                    38437    
unix  2      [ ]         DGRAM                    9702     
unix  2      [ ]         DGRAM                    10093    
unix  3      [ ]         STREAM     CONNECTED     38587    
unix  3      [ ]         STREAM     CONNECTED     10601    
unix  3      [ ]         STREAM     CONNECTED     11256    
unix  3      [ ]         STREAM     CONNECTED     10660    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     13189    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     10793    /run/systemd/journal/stdout
unix  2      [ ]         DGRAM                    38497    
unix  3      [ ]         STREAM     CONNECTED     11309    /run/systemd/journal/stdout
unix  2      [ ]         DGRAM                    11601    
unix  3      [ ]         STREAM     CONNECTED     9498     /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     11531    /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     11582    /var/run/dbus/system_bus_socket
unix  3      [ ]         DGRAM                    9708     
unix  3      [ ]         STREAM     CONNECTED     11322    
unix  2      [ ]         DGRAM                    8950     
unix  3      [ ]         STREAM     CONNECTED     10790    
unix  3      [ ]         STREAM     CONNECTED     11067    
unix  3      [ ]         STREAM     CONNECTED     38489    
unix  2      [ ]         DGRAM                    37936    
unix  3      [ ]         STREAM     CONNECTED     8929     
unix  3      [ ]         STREAM     CONNECTED     10552    
unix  3      [ ]         DGRAM                    9710     
unix  3      [ ]         DGRAM                    9707     
unix  3      [ ]         STREAM     CONNECTED     10662    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     11530    
unix  3      [ ]         STREAM     CONNECTED     11157    
unix  3      [ ]         STREAM     CONNECTED     10498    
unix  3      [ ]         STREAM     CONNECTED     13179    
unix  3      [ ]         STREAM     CONNECTED     11581    
unix  3      [ ]         STREAM     CONNECTED     10747    
unix  2      [ ]         DGRAM                    11312    
unix  3      [ ]         STREAM     CONNECTED     9496     
unix  3      [ ]         STREAM     CONNECTED     11324    /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     38588    
unix  3      [ ]         DGRAM                    9709     
unix  3      [ ]         STREAM     CONNECTED     11068    /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     11066    
unix  3      [ ]         STREAM     CONNECTED     38506    /run/systemd/journal/stdout
unix  3      [ ]         DGRAM                    8960     
unix  2      [ ]         DGRAM                    11058    
unix  3      [ ]         STREAM     CONNECTED     11210    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     10510    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     8931     /run/systemd/journal/stdout
unix  2      [ ]         DGRAM                    38494    
unix  3      [ ]         DGRAM                    8961     

(test-3) Calling .GetSSHHostname
(test-3) Calling .GetSSHPort
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHUsername
Using SSH client type: external
{[-o BatchMode=yes -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none ubuntu@52.29.118.23 -o IdentitiesOnly=yes -i /Users/ilya/.docker/machine/machines/test-3/id_rsa -p 22] /usr/bin/ssh}
About to run SSH command:
netstat -an
SSH cmd err, output: <nil>: Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State      
tcp        0      0 10.0.3.1:53             0.0.0.0:*               LISTEN     
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN     
tcp        0      0 172.31.0.37:59748       52.28.64.56:80          TIME_WAIT  
tcp        0      0 172.31.0.37:44772       52.28.81.96:80          TIME_WAIT  
tcp        0      0 172.31.0.37:33790       91.189.88.149:80        TIME_WAIT  
tcp        0     72 172.31.0.37:22          82.22.129.232:63937     ESTABLISHED
tcp6       0      0 fe80::d024:eeff:fee5:53 :::*                    LISTEN     
tcp6       0      0 :::22                   :::*                    LISTEN     
udp        0      0 0.0.0.0:30771           0.0.0.0:*                          
udp        0      0 10.0.3.1:53             0.0.0.0:*                          
udp        0      0 0.0.0.0:67              0.0.0.0:*                          
udp        0      0 0.0.0.0:68              0.0.0.0:*                          
udp6       0      0 fe80::d024:eeff:fee5:53 :::*                               
udp6       0      0 :::28829                :::*                               
Active UNIX domain sockets (servers and established)
Proto RefCnt Flags       Type       State         I-Node   Path
unix  7      [ ]         DGRAM                    8040     /run/systemd/journal/dev-log
unix  2      [ ACC ]     STREAM     LISTENING     8041     /run/systemd/journal/stdout
unix  7      [ ]         DGRAM                    8042     /run/systemd/journal/socket
unix  2      [ ]         DGRAM                    38796    /run/user/1000/systemd/notify
unix  2      [ ACC ]     STREAM     LISTENING     38797    /run/user/1000/systemd/private
unix  2      [ ACC ]     SEQPACKET  LISTENING     8274     /run/udev/control
unix  2      [ ]         DGRAM                    8416     /run/systemd/journal/syslog
unix  2      [ ACC ]     STREAM     LISTENING     10983    /sys/fs/cgroup/cgmanager/sock
unix  2      [ ACC ]     STREAM     LISTENING     10229    /var/lib/lxd/unix.socket
unix  2      [ ACC ]     STREAM     LISTENING     10226    /run/uuidd/request
unix  2      [ ACC ]     STREAM     LISTENING     10227    /var/run/dbus/system_bus_socket
unix  2      [ ACC ]     STREAM     LISTENING     10271    /run/acpid.socket
unix  2      [ ]         DGRAM                    8031     /run/systemd/notify
unix  2      [ ACC ]     STREAM     LISTENING     8032     /run/systemd/private
unix  2      [ ]         DGRAM                    9702     
unix  2      [ ]         DGRAM                    10093    
unix  2      [ ]         DGRAM                    38719    
unix  3      [ ]         STREAM     CONNECTED     10601    
unix  3      [ ]         STREAM     CONNECTED     11256    
unix  3      [ ]         STREAM     CONNECTED     10660    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     13189    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     10793    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     38870    
unix  3      [ ]         STREAM     CONNECTED     11309    /run/systemd/journal/stdout
unix  2      [ ]         DGRAM                    11601    
unix  3      [ ]         STREAM     CONNECTED     9498     /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     11531    /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     11582    /var/run/dbus/system_bus_socket
unix  3      [ ]         DGRAM                    9708     
unix  3      [ ]         STREAM     CONNECTED     11322    
unix  2      [ ]         DGRAM                    8950     
unix  3      [ ]         STREAM     CONNECTED     10790    
unix  3      [ ]         STREAM     CONNECTED     11067    
unix  2      [ ]         DGRAM                    37936    
unix  3      [ ]         STREAM     CONNECTED     8929     
unix  3      [ ]         STREAM     CONNECTED     10552    
unix  3      [ ]         DGRAM                    9710     
unix  3      [ ]         DGRAM                    9707     
unix  3      [ ]         STREAM     CONNECTED     10662    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     11530    
unix  3      [ ]         STREAM     CONNECTED     11157    
unix  3      [ ]         STREAM     CONNECTED     10498    
unix  3      [ ]         STREAM     CONNECTED     13179    
unix  3      [ ]         STREAM     CONNECTED     11581    
unix  3      [ ]         STREAM     CONNECTED     10747    
unix  2      [ ]         DGRAM                    11312    
unix  3      [ ]         STREAM     CONNECTED     9496     
unix  3      [ ]         STREAM     CONNECTED     11324    /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     38790    /run/systemd/journal/stdout
unix  3      [ ]         DGRAM                    9709     
unix  3      [ ]         STREAM     CONNECTED     11068    /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     11066    
unix  2      [ ]         DGRAM                    38779    
unix  3      [ ]         STREAM     CONNECTED     38869    
unix  3      [ ]         DGRAM                    8960     
unix  2      [ ]         DGRAM                    11058    
unix  3      [ ]         STREAM     CONNECTED     11210    /run/systemd/journal/stdout
unix  2      [ ]         DGRAM                    38776    
unix  3      [ ]         STREAM     CONNECTED     10510    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     8931     /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     38771    
unix  3      [ ]         DGRAM                    8961     

(test-3) Calling .GetSSHHostname
(test-3) Calling .GetSSHPort
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHUsername
Using SSH client type: external
{[-o BatchMode=yes -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none ubuntu@52.29.118.23 -o IdentitiesOnly=yes -i /Users/ilya/.docker/machine/machines/test-3/id_rsa -p 22] /usr/bin/ssh}
About to run SSH command:
netstat -an
SSH cmd err, output: <nil>: Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State      
tcp        0      0 10.0.3.1:53             0.0.0.0:*               LISTEN     
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN     
tcp        0      0 172.31.0.37:59748       52.28.64.56:80          TIME_WAIT  
tcp        0      0 172.31.0.37:44772       52.28.81.96:80          TIME_WAIT  
tcp        0     72 172.31.0.37:22          82.22.129.232:63938     ESTABLISHED
tcp        0      0 172.31.0.37:33790       91.189.88.149:80        TIME_WAIT  
tcp6       0      0 fe80::d024:eeff:fee5:53 :::*                    LISTEN     
tcp6       0      0 :::22                   :::*                    LISTEN     
udp        0      0 0.0.0.0:30771           0.0.0.0:*                          
udp        0      0 10.0.3.1:53             0.0.0.0:*                          
udp        0      0 0.0.0.0:67              0.0.0.0:*                          
udp        0      0 0.0.0.0:68              0.0.0.0:*                          
udp6       0      0 fe80::d024:eeff:fee5:53 :::*                               
udp6       0      0 :::28829                :::*                               
Active UNIX domain sockets (servers and established)
Proto RefCnt Flags       Type       State         I-Node   Path
unix  7      [ ]         DGRAM                    8040     /run/systemd/journal/dev-log
unix  2      [ ACC ]     STREAM     LISTENING     8041     /run/systemd/journal/stdout
unix  7      [ ]         DGRAM                    8042     /run/systemd/journal/socket
unix  2      [ ]         DGRAM                    39080    /run/user/1000/systemd/notify
unix  2      [ ACC ]     STREAM     LISTENING     39081    /run/user/1000/systemd/private
unix  2      [ ACC ]     SEQPACKET  LISTENING     8274     /run/udev/control
unix  2      [ ]         DGRAM                    8416     /run/systemd/journal/syslog
unix  2      [ ACC ]     STREAM     LISTENING     10983    /sys/fs/cgroup/cgmanager/sock
unix  2      [ ACC ]     STREAM     LISTENING     10229    /var/lib/lxd/unix.socket
unix  2      [ ACC ]     STREAM     LISTENING     10226    /run/uuidd/request
unix  2      [ ACC ]     STREAM     LISTENING     10227    /var/run/dbus/system_bus_socket
unix  2      [ ACC ]     STREAM     LISTENING     10271    /run/acpid.socket
unix  2      [ ]         DGRAM                    8031     /run/systemd/notify
unix  2      [ ACC ]     STREAM     LISTENING     8032     /run/systemd/private
unix  3      [ ]         STREAM     CONNECTED     39154    
unix  2      [ ]         DGRAM                    9702     
unix  2      [ ]         DGRAM                    10093    
unix  3      [ ]         STREAM     CONNECTED     39153    
unix  3      [ ]         STREAM     CONNECTED     10601    
unix  3      [ ]         STREAM     CONNECTED     11256    
unix  3      [ ]         STREAM     CONNECTED     10660    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     13189    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     10793    /run/systemd/journal/stdout
unix  2      [ ]         DGRAM                    39003    
unix  3      [ ]         STREAM     CONNECTED     11309    /run/systemd/journal/stdout
unix  2      [ ]         DGRAM                    11601    
unix  3      [ ]         STREAM     CONNECTED     9498     /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     11531    /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     11582    /var/run/dbus/system_bus_socket
unix  3      [ ]         DGRAM                    9708     
unix  3      [ ]         STREAM     CONNECTED     11322    
unix  2      [ ]         DGRAM                    8950     
unix  3      [ ]         STREAM     CONNECTED     10790    
unix  3      [ ]         STREAM     CONNECTED     11067    
unix  2      [ ]         DGRAM                    39063    
unix  2      [ ]         DGRAM                    37936    
unix  3      [ ]         STREAM     CONNECTED     8929     
unix  3      [ ]         STREAM     CONNECTED     10552    
unix  3      [ ]         DGRAM                    9710     
unix  3      [ ]         DGRAM                    9707     
unix  3      [ ]         STREAM     CONNECTED     10662    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     11530    
unix  3      [ ]         STREAM     CONNECTED     11157    
unix  3      [ ]         STREAM     CONNECTED     10498    
unix  3      [ ]         STREAM     CONNECTED     13179    
unix  3      [ ]         STREAM     CONNECTED     39055    
unix  3      [ ]         STREAM     CONNECTED     11581    
unix  3      [ ]         STREAM     CONNECTED     10747    
unix  2      [ ]         DGRAM                    11312    
unix  3      [ ]         STREAM     CONNECTED     9496     
unix  3      [ ]         STREAM     CONNECTED     11324    /var/run/dbus/system_bus_socket
unix  3      [ ]         DGRAM                    9709     
unix  3      [ ]         STREAM     CONNECTED     11068    /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     11066    
unix  3      [ ]         STREAM     CONNECTED     39074    /run/systemd/journal/stdout
unix  3      [ ]         DGRAM                    8960     
unix  2      [ ]         DGRAM                    11058    
unix  3      [ ]         STREAM     CONNECTED     11210    /run/systemd/journal/stdout
unix  2      [ ]         DGRAM                    39060    
unix  3      [ ]         STREAM     CONNECTED     10510    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     8931     /run/systemd/journal/stdout
unix  3      [ ]         DGRAM                    8961     

(test-3) Calling .GetSSHHostname
(test-3) Calling .GetSSHPort
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHUsername
Using SSH client type: external
{[-o BatchMode=yes -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none ubuntu@52.29.118.23 -o IdentitiesOnly=yes -i /Users/ilya/.docker/machine/machines/test-3/id_rsa -p 22] /usr/bin/ssh}
About to run SSH command:
netstat -an
SSH cmd err, output: <nil>: Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State      
tcp        0      0 10.0.3.1:53             0.0.0.0:*               LISTEN     
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN     
tcp        0      0 172.31.0.37:59748       52.28.64.56:80          TIME_WAIT  
tcp        0      0 172.31.0.37:44772       52.28.81.96:80          TIME_WAIT  
tcp        0     72 172.31.0.37:22          82.22.129.232:63941     ESTABLISHED
tcp        0      0 172.31.0.37:33790       91.189.88.149:80        TIME_WAIT  
tcp6       0      0 fe80::d024:eeff:fee5:53 :::*                    LISTEN     
tcp6       0      0 :::22                   :::*                    LISTEN     
udp        0      0 0.0.0.0:30771           0.0.0.0:*                          
udp        0      0 10.0.3.1:53             0.0.0.0:*                          
udp        0      0 0.0.0.0:67              0.0.0.0:*                          
udp        0      0 0.0.0.0:68              0.0.0.0:*                          
udp6       0      0 fe80::d024:eeff:fee5:53 :::*                               
udp6       0      0 :::28829                :::*                               
Active UNIX domain sockets (servers and established)
Proto RefCnt Flags       Type       State         I-Node   Path
unix  7      [ ]         DGRAM                    8040     /run/systemd/journal/dev-log
unix  2      [ ACC ]     STREAM     LISTENING     8041     /run/systemd/journal/stdout
unix  7      [ ]         DGRAM                    8042     /run/systemd/journal/socket
unix  2      [ ]         DGRAM                    39362    /run/user/1000/systemd/notify
unix  2      [ ACC ]     STREAM     LISTENING     39363    /run/user/1000/systemd/private
unix  2      [ ACC ]     SEQPACKET  LISTENING     8274     /run/udev/control
unix  2      [ ]         DGRAM                    8416     /run/systemd/journal/syslog
unix  2      [ ACC ]     STREAM     LISTENING     10983    /sys/fs/cgroup/cgmanager/sock
unix  2      [ ACC ]     STREAM     LISTENING     10229    /var/lib/lxd/unix.socket
unix  2      [ ACC ]     STREAM     LISTENING     10226    /run/uuidd/request
unix  2      [ ACC ]     STREAM     LISTENING     10227    /var/run/dbus/system_bus_socket
unix  2      [ ACC ]     STREAM     LISTENING     10271    /run/acpid.socket
unix  2      [ ]         DGRAM                    8031     /run/systemd/notify
unix  2      [ ACC ]     STREAM     LISTENING     8032     /run/systemd/private
unix  2      [ ]         DGRAM                    9702     
unix  2      [ ]         DGRAM                    10093    
unix  3      [ ]         STREAM     CONNECTED     39435    
unix  3      [ ]         STREAM     CONNECTED     10601    
unix  3      [ ]         STREAM     CONNECTED     11256    
unix  3      [ ]         STREAM     CONNECTED     10660    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     13189    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     10793    /run/systemd/journal/stdout
unix  2      [ ]         DGRAM                    39285    
unix  3      [ ]         STREAM     CONNECTED     11309    /run/systemd/journal/stdout
unix  2      [ ]         DGRAM                    11601    
unix  3      [ ]         STREAM     CONNECTED     9498     /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     11531    /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     11582    /var/run/dbus/system_bus_socket
unix  3      [ ]         DGRAM                    9708     
unix  3      [ ]         STREAM     CONNECTED     11322    
unix  2      [ ]         DGRAM                    8950     
unix  3      [ ]         STREAM     CONNECTED     10790    
unix  3      [ ]         STREAM     CONNECTED     11067    
unix  3      [ ]         STREAM     CONNECTED     39356    /run/systemd/journal/stdout
unix  2      [ ]         DGRAM                    37936    
unix  3      [ ]         STREAM     CONNECTED     8929     
unix  3      [ ]         STREAM     CONNECTED     39436    
unix  3      [ ]         STREAM     CONNECTED     10552    
unix  3      [ ]         DGRAM                    9710     
unix  3      [ ]         DGRAM                    9707     
unix  3      [ ]         STREAM     CONNECTED     10662    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     11530    
unix  3      [ ]         STREAM     CONNECTED     11157    
unix  3      [ ]         STREAM     CONNECTED     10498    
unix  3      [ ]         STREAM     CONNECTED     13179    
unix  3      [ ]         STREAM     CONNECTED     11581    
unix  3      [ ]         STREAM     CONNECTED     10747    
unix  2      [ ]         DGRAM                    11312    
unix  3      [ ]         STREAM     CONNECTED     9496     
unix  3      [ ]         STREAM     CONNECTED     11324    /var/run/dbus/system_bus_socket
unix  2      [ ]         DGRAM                    39345    
unix  3      [ ]         DGRAM                    9709     
unix  3      [ ]         STREAM     CONNECTED     11068    /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     11066    
unix  3      [ ]         STREAM     CONNECTED     39337    
unix  3      [ ]         DGRAM                    8960     
unix  2      [ ]         DGRAM                    11058    
unix  3      [ ]         STREAM     CONNECTED     11210    /run/systemd/journal/stdout
unix  2      [ ]         DGRAM                    39342    
unix  3      [ ]         STREAM     CONNECTED     10510    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     8931     /run/systemd/journal/stdout
unix  3      [ ]         DGRAM                    8961     

(test-3) Calling .GetSSHHostname
(test-3) Calling .GetSSHPort
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHUsername
Using SSH client type: external
{[-o BatchMode=yes -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none ubuntu@52.29.118.23 -o IdentitiesOnly=yes -i /Users/ilya/.docker/machine/machines/test-3/id_rsa -p 22] /usr/bin/ssh}
About to run SSH command:
netstat -an
SSH cmd err, output: <nil>: Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State      
tcp        0      0 10.0.3.1:53             0.0.0.0:*               LISTEN     
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN     
tcp        0      0 172.31.0.37:59748       52.28.64.56:80          TIME_WAIT  
tcp        0      0 172.31.0.37:44772       52.28.81.96:80          TIME_WAIT  
tcp        0     72 172.31.0.37:22          82.22.129.232:63942     ESTABLISHED
tcp        0      0 172.31.0.37:33790       91.189.88.149:80        TIME_WAIT  
tcp6       0      0 fe80::d024:eeff:fee5:53 :::*                    LISTEN     
tcp6       0      0 :::22                   :::*                    LISTEN     
udp        0      0 0.0.0.0:30771           0.0.0.0:*                          
udp        0      0 10.0.3.1:53             0.0.0.0:*                          
udp        0      0 0.0.0.0:67              0.0.0.0:*                          
udp        0      0 0.0.0.0:68              0.0.0.0:*                          
udp6       0      0 fe80::d024:eeff:fee5:53 :::*                               
udp6       0      0 :::28829                :::*                               
Active UNIX domain sockets (servers and established)
Proto RefCnt Flags       Type       State         I-Node   Path
unix  7      [ ]         DGRAM                    8040     /run/systemd/journal/dev-log
unix  2      [ ACC ]     STREAM     LISTENING     8041     /run/systemd/journal/stdout
unix  7      [ ]         DGRAM                    8042     /run/systemd/journal/socket
unix  2      [ ]         DGRAM                    39644    /run/user/1000/systemd/notify
unix  2      [ ACC ]     STREAM     LISTENING     39645    /run/user/1000/systemd/private
unix  2      [ ACC ]     SEQPACKET  LISTENING     8274     /run/udev/control
unix  2      [ ]         DGRAM                    8416     /run/systemd/journal/syslog
unix  2      [ ACC ]     STREAM     LISTENING     10983    /sys/fs/cgroup/cgmanager/sock
unix  2      [ ACC ]     STREAM     LISTENING     10229    /var/lib/lxd/unix.socket
unix  2      [ ACC ]     STREAM     LISTENING     10226    /run/uuidd/request
unix  2      [ ACC ]     STREAM     LISTENING     10227    /var/run/dbus/system_bus_socket
unix  2      [ ACC ]     STREAM     LISTENING     10271    /run/acpid.socket
unix  2      [ ]         DGRAM                    8031     /run/systemd/notify
unix  2      [ ACC ]     STREAM     LISTENING     8032     /run/systemd/private
unix  2      [ ]         DGRAM                    39567    
unix  2      [ ]         DGRAM                    9702     
unix  2      [ ]         DGRAM                    10093    
unix  3      [ ]         STREAM     CONNECTED     39619    
unix  3      [ ]         STREAM     CONNECTED     10601    
unix  3      [ ]         STREAM     CONNECTED     11256    
unix  3      [ ]         STREAM     CONNECTED     10660    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     13189    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     10793    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     11309    /run/systemd/journal/stdout
unix  2      [ ]         DGRAM                    11601    
unix  3      [ ]         STREAM     CONNECTED     9498     /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     11531    /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     11582    /var/run/dbus/system_bus_socket
unix  3      [ ]         DGRAM                    9708     
unix  3      [ ]         STREAM     CONNECTED     11322    
unix  2      [ ]         DGRAM                    8950     
unix  3      [ ]         STREAM     CONNECTED     10790    
unix  3      [ ]         STREAM     CONNECTED     11067    
unix  2      [ ]         DGRAM                    39624    
unix  2      [ ]         DGRAM                    37936    
unix  3      [ ]         STREAM     CONNECTED     8929     
unix  2      [ ]         DGRAM                    39627    
unix  3      [ ]         STREAM     CONNECTED     10552    
unix  3      [ ]         DGRAM                    9710     
unix  3      [ ]         DGRAM                    9707     
unix  3      [ ]         STREAM     CONNECTED     10662    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     11530    
unix  3      [ ]         STREAM     CONNECTED     11157    
unix  3      [ ]         STREAM     CONNECTED     10498    
unix  3      [ ]         STREAM     CONNECTED     13179    
unix  3      [ ]         STREAM     CONNECTED     39638    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     11581    
unix  3      [ ]         STREAM     CONNECTED     10747    
unix  2      [ ]         DGRAM                    11312    
unix  3      [ ]         STREAM     CONNECTED     9496     
unix  3      [ ]         STREAM     CONNECTED     11324    /var/run/dbus/system_bus_socket
unix  3      [ ]         DGRAM                    9709     
unix  3      [ ]         STREAM     CONNECTED     11068    /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     11066    
unix  3      [ ]         STREAM     CONNECTED     39717    
unix  3      [ ]         STREAM     CONNECTED     39718    
unix  3      [ ]         DGRAM                    8960     
unix  2      [ ]         DGRAM                    11058    
unix  3      [ ]         STREAM     CONNECTED     11210    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     10510    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     8931     /run/systemd/journal/stdout
unix  3      [ ]         DGRAM                    8961     

(test-3) Calling .GetSSHHostname
(test-3) Calling .GetSSHPort
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHUsername
Using SSH client type: external
{[-o BatchMode=yes -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none ubuntu@52.29.118.23 -o IdentitiesOnly=yes -i /Users/ilya/.docker/machine/machines/test-3/id_rsa -p 22] /usr/bin/ssh}
About to run SSH command:
netstat -an
SSH cmd err, output: <nil>: Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State      
tcp        0      0 10.0.3.1:53             0.0.0.0:*               LISTEN     
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN     
tcp        0      0 172.31.0.37:59748       52.28.64.56:80          TIME_WAIT  
tcp        0      0 172.31.0.37:44772       52.28.81.96:80          TIME_WAIT  
tcp        0      0 172.31.0.37:33790       91.189.88.149:80        TIME_WAIT  
tcp        0     72 172.31.0.37:22          82.22.129.232:63943     ESTABLISHED
tcp6       0      0 fe80::d024:eeff:fee5:53 :::*                    LISTEN     
tcp6       0      0 :::22                   :::*                    LISTEN     
udp        0      0 0.0.0.0:30771           0.0.0.0:*                          
udp        0      0 10.0.3.1:53             0.0.0.0:*                          
udp        0      0 0.0.0.0:67              0.0.0.0:*                          
udp        0      0 0.0.0.0:68              0.0.0.0:*                          
udp6       0      0 fe80::d024:eeff:fee5:53 :::*                               
udp6       0      0 :::28829                :::*                               
Active UNIX domain sockets (servers and established)
Proto RefCnt Flags       Type       State         I-Node   Path
unix  7      [ ]         DGRAM                    8040     /run/systemd/journal/dev-log
unix  2      [ ACC ]     STREAM     LISTENING     8041     /run/systemd/journal/stdout
unix  7      [ ]         DGRAM                    8042     /run/systemd/journal/socket
unix  2      [ ]         DGRAM                    39926    /run/user/1000/systemd/notify
unix  2      [ ACC ]     STREAM     LISTENING     39927    /run/user/1000/systemd/private
unix  2      [ ACC ]     SEQPACKET  LISTENING     8274     /run/udev/control
unix  2      [ ]         DGRAM                    8416     /run/systemd/journal/syslog
unix  2      [ ACC ]     STREAM     LISTENING     10983    /sys/fs/cgroup/cgmanager/sock
unix  2      [ ACC ]     STREAM     LISTENING     10229    /var/lib/lxd/unix.socket
unix  2      [ ACC ]     STREAM     LISTENING     10226    /run/uuidd/request
unix  2      [ ACC ]     STREAM     LISTENING     10227    /var/run/dbus/system_bus_socket
unix  2      [ ACC ]     STREAM     LISTENING     10271    /run/acpid.socket
unix  2      [ ]         DGRAM                    8031     /run/systemd/notify
unix  2      [ ACC ]     STREAM     LISTENING     8032     /run/systemd/private
unix  3      [ ]         STREAM     CONNECTED     40000    
unix  2      [ ]         DGRAM                    9702     
unix  2      [ ]         DGRAM                    10093    
unix  3      [ ]         STREAM     CONNECTED     10601    
unix  3      [ ]         STREAM     CONNECTED     11256    
unix  3      [ ]         STREAM     CONNECTED     10660    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     13189    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     10793    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     11309    /run/systemd/journal/stdout
unix  2      [ ]         DGRAM                    11601    
unix  3      [ ]         STREAM     CONNECTED     9498     /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     11531    /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     11582    /var/run/dbus/system_bus_socket
unix  3      [ ]         DGRAM                    9708     
unix  3      [ ]         STREAM     CONNECTED     11322    
unix  2      [ ]         DGRAM                    8950     
unix  3      [ ]         STREAM     CONNECTED     10790    
unix  3      [ ]         STREAM     CONNECTED     11067    
unix  2      [ ]         DGRAM                    39906    
unix  2      [ ]         DGRAM                    37936    
unix  3      [ ]         STREAM     CONNECTED     8929     
unix  3      [ ]         STREAM     CONNECTED     39920    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     10552    
unix  3      [ ]         DGRAM                    9710     
unix  3      [ ]         DGRAM                    9707     
unix  3      [ ]         STREAM     CONNECTED     10662    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     11530    
unix  3      [ ]         STREAM     CONNECTED     11157    
unix  3      [ ]         STREAM     CONNECTED     10498    
unix  3      [ ]         STREAM     CONNECTED     13179    
unix  3      [ ]         STREAM     CONNECTED     11581    
unix  3      [ ]         STREAM     CONNECTED     10747    
unix  2      [ ]         DGRAM                    11312    
unix  3      [ ]         STREAM     CONNECTED     9496     
unix  3      [ ]         STREAM     CONNECTED     11324    /var/run/dbus/system_bus_socket
unix  2      [ ]         DGRAM                    39909    
unix  3      [ ]         DGRAM                    9709     
unix  3      [ ]         STREAM     CONNECTED     11068    /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     11066    
unix  2      [ ]         DGRAM                    39849    
unix  3      [ ]         STREAM     CONNECTED     39901    
unix  3      [ ]         DGRAM                    8960     
unix  2      [ ]         DGRAM                    11058    
unix  3      [ ]         STREAM     CONNECTED     11210    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     10510    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     8931     /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     39999    
unix  3      [ ]         DGRAM                    8961     

(test-3) Calling .GetSSHHostname
(test-3) Calling .GetSSHPort
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHUsername
Using SSH client type: external
{[-o BatchMode=yes -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none ubuntu@52.29.118.23 -o IdentitiesOnly=yes -i /Users/ilya/.docker/machine/machines/test-3/id_rsa -p 22] /usr/bin/ssh}
About to run SSH command:
netstat -an
SSH cmd err, output: <nil>: Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State      
tcp        0      0 10.0.3.1:53             0.0.0.0:*               LISTEN     
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN     
tcp        0      0 172.31.0.37:59748       52.28.64.56:80          TIME_WAIT  
tcp        0      0 172.31.0.37:44772       52.28.81.96:80          TIME_WAIT  
tcp        0      0 172.31.0.37:33790       91.189.88.149:80        TIME_WAIT  
tcp        0     72 172.31.0.37:22          82.22.129.232:63944     ESTABLISHED
tcp6       0      0 fe80::d024:eeff:fee5:53 :::*                    LISTEN     
tcp6       0      0 :::22                   :::*                    LISTEN     
udp        0      0 0.0.0.0:30771           0.0.0.0:*                          
udp        0      0 10.0.3.1:53             0.0.0.0:*                          
udp        0      0 0.0.0.0:67              0.0.0.0:*                          
udp        0      0 0.0.0.0:68              0.0.0.0:*                          
udp6       0      0 fe80::d024:eeff:fee5:53 :::*                               
udp6       0      0 :::28829                :::*                               
Active UNIX domain sockets (servers and established)
Proto RefCnt Flags       Type       State         I-Node   Path
unix  7      [ ]         DGRAM                    8040     /run/systemd/journal/dev-log
unix  2      [ ACC ]     STREAM     LISTENING     8041     /run/systemd/journal/stdout
unix  7      [ ]         DGRAM                    8042     /run/systemd/journal/socket
unix  2      [ ]         DGRAM                    40212    /run/user/1000/systemd/notify
unix  2      [ ACC ]     STREAM     LISTENING     40213    /run/user/1000/systemd/private
unix  2      [ ACC ]     SEQPACKET  LISTENING     8274     /run/udev/control
unix  2      [ ]         DGRAM                    8416     /run/systemd/journal/syslog
unix  2      [ ACC ]     STREAM     LISTENING     10983    /sys/fs/cgroup/cgmanager/sock
unix  2      [ ACC ]     STREAM     LISTENING     10229    /var/lib/lxd/unix.socket
unix  2      [ ACC ]     STREAM     LISTENING     10226    /run/uuidd/request
unix  2      [ ACC ]     STREAM     LISTENING     10227    /var/run/dbus/system_bus_socket
unix  2      [ ACC ]     STREAM     LISTENING     10271    /run/acpid.socket
unix  2      [ ]         DGRAM                    8031     /run/systemd/notify
unix  2      [ ACC ]     STREAM     LISTENING     8032     /run/systemd/private
unix  2      [ ]         DGRAM                    9702     
unix  2      [ ]         DGRAM                    10093    
unix  2      [ ]         DGRAM                    40192    
unix  3      [ ]         STREAM     CONNECTED     10601    
unix  3      [ ]         STREAM     CONNECTED     11256    
unix  3      [ ]         STREAM     CONNECTED     10660    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     13189    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     10793    /run/systemd/journal/stdout
unix  2      [ ]         DGRAM                    40134    
unix  3      [ ]         STREAM     CONNECTED     11309    /run/systemd/journal/stdout
unix  2      [ ]         DGRAM                    11601    
unix  3      [ ]         STREAM     CONNECTED     9498     /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     11531    /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     11582    /var/run/dbus/system_bus_socket
unix  3      [ ]         DGRAM                    9708     
unix  3      [ ]         STREAM     CONNECTED     11322    
unix  2      [ ]         DGRAM                    8950     
unix  3      [ ]         STREAM     CONNECTED     10790    
unix  3      [ ]         STREAM     CONNECTED     11067    
unix  3      [ ]         STREAM     CONNECTED     40187    
unix  2      [ ]         DGRAM                    37936    
unix  3      [ ]         STREAM     CONNECTED     8929     
unix  3      [ ]         STREAM     CONNECTED     10552    
unix  3      [ ]         DGRAM                    9710     
unix  3      [ ]         DGRAM                    9707     
unix  3      [ ]         STREAM     CONNECTED     10662    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     11530    
unix  3      [ ]         STREAM     CONNECTED     11157    
unix  3      [ ]         STREAM     CONNECTED     10498    
unix  3      [ ]         STREAM     CONNECTED     13179    
unix  2      [ ]         DGRAM                    40195    
unix  3      [ ]         STREAM     CONNECTED     11581    
unix  3      [ ]         STREAM     CONNECTED     10747    
unix  2      [ ]         DGRAM                    11312    
unix  3      [ ]         STREAM     CONNECTED     9496     
unix  3      [ ]         STREAM     CONNECTED     11324    /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     40286    
unix  3      [ ]         DGRAM                    9709     
unix  3      [ ]         STREAM     CONNECTED     11068    /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     11066    
unix  3      [ ]         STREAM     CONNECTED     40204    /run/systemd/journal/stdout
unix  3      [ ]         DGRAM                    8960     
unix  2      [ ]         DGRAM                    11058    
unix  3      [ ]         STREAM     CONNECTED     11210    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     10510    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     8931     /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     40285    
unix  3      [ ]         DGRAM                    8961     

(test-3) Calling .GetSSHHostname
(test-3) Calling .GetSSHPort
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHUsername
Using SSH client type: external
{[-o BatchMode=yes -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none ubuntu@52.29.118.23 -o IdentitiesOnly=yes -i /Users/ilya/.docker/machine/machines/test-3/id_rsa -p 22] /usr/bin/ssh}
About to run SSH command:
netstat -an
SSH cmd err, output: <nil>: Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State      
tcp        0      0 10.0.3.1:53             0.0.0.0:*               LISTEN     
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN     
tcp        0      0 172.31.0.37:59748       52.28.64.56:80          TIME_WAIT  
tcp        0      0 172.31.0.37:44772       52.28.81.96:80          TIME_WAIT  
tcp        0      0 172.31.0.37:33790       91.189.88.149:80        TIME_WAIT  
tcp        0     72 172.31.0.37:22          82.22.129.232:63946     ESTABLISHED
tcp6       0      0 fe80::d024:eeff:fee5:53 :::*                    LISTEN     
tcp6       0      0 :::22                   :::*                    LISTEN     
udp        0      0 0.0.0.0:30771           0.0.0.0:*                          
udp        0      0 10.0.3.1:53             0.0.0.0:*                          
udp        0      0 0.0.0.0:67              0.0.0.0:*                          
udp        0      0 0.0.0.0:68              0.0.0.0:*                          
udp6       0      0 fe80::d024:eeff:fee5:53 :::*                               
udp6       0      0 :::28829                :::*                               
Active UNIX domain sockets (servers and established)
Proto RefCnt Flags       Type       State         I-Node   Path
unix  7      [ ]         DGRAM                    8040     /run/systemd/journal/dev-log
unix  2      [ ACC ]     STREAM     LISTENING     8041     /run/systemd/journal/stdout
unix  7      [ ]         DGRAM                    8042     /run/systemd/journal/socket
unix  2      [ ]         DGRAM                    40494    /run/user/1000/systemd/notify
unix  2      [ ACC ]     STREAM     LISTENING     40495    /run/user/1000/systemd/private
unix  2      [ ACC ]     SEQPACKET  LISTENING     8274     /run/udev/control
unix  2      [ ]         DGRAM                    8416     /run/systemd/journal/syslog
unix  2      [ ACC ]     STREAM     LISTENING     10983    /sys/fs/cgroup/cgmanager/sock
unix  2      [ ACC ]     STREAM     LISTENING     10229    /var/lib/lxd/unix.socket
unix  2      [ ACC ]     STREAM     LISTENING     10226    /run/uuidd/request
unix  2      [ ACC ]     STREAM     LISTENING     10227    /var/run/dbus/system_bus_socket
unix  2      [ ACC ]     STREAM     LISTENING     10271    /run/acpid.socket
unix  2      [ ]         DGRAM                    8031     /run/systemd/notify
unix  2      [ ACC ]     STREAM     LISTENING     8032     /run/systemd/private
unix  2      [ ]         DGRAM                    9702     
unix  2      [ ]         DGRAM                    10093    
unix  3      [ ]         STREAM     CONNECTED     40469    
unix  3      [ ]         STREAM     CONNECTED     10601    
unix  3      [ ]         STREAM     CONNECTED     11256    
unix  2      [ ]         DGRAM                    40417    
unix  3      [ ]         STREAM     CONNECTED     10660    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     13189    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     10793    /run/systemd/journal/stdout
unix  2      [ ]         DGRAM                    40477    
unix  3      [ ]         STREAM     CONNECTED     11309    /run/systemd/journal/stdout
unix  2      [ ]         DGRAM                    11601    
unix  3      [ ]         STREAM     CONNECTED     9498     /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     11531    /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     11582    /var/run/dbus/system_bus_socket
unix  3      [ ]         DGRAM                    9708     
unix  3      [ ]         STREAM     CONNECTED     11322    
unix  2      [ ]         DGRAM                    8950     
unix  3      [ ]         STREAM     CONNECTED     10790    
unix  3      [ ]         STREAM     CONNECTED     11067    
unix  3      [ ]         STREAM     CONNECTED     40567    
unix  2      [ ]         DGRAM                    37936    
unix  3      [ ]         STREAM     CONNECTED     8929     
unix  3      [ ]         STREAM     CONNECTED     10552    
unix  3      [ ]         DGRAM                    9710     
unix  3      [ ]         DGRAM                    9707     
unix  3      [ ]         STREAM     CONNECTED     10662    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     11530    
unix  3      [ ]         STREAM     CONNECTED     11157    
unix  3      [ ]         STREAM     CONNECTED     10498    
unix  3      [ ]         STREAM     CONNECTED     13179    
unix  3      [ ]         STREAM     CONNECTED     40568    
unix  3      [ ]         STREAM     CONNECTED     11581    
unix  3      [ ]         STREAM     CONNECTED     10747    
unix  2      [ ]         DGRAM                    11312    
unix  3      [ ]         STREAM     CONNECTED     9496     
unix  3      [ ]         STREAM     CONNECTED     11324    /var/run/dbus/system_bus_socket
unix  3      [ ]         DGRAM                    9709     
unix  3      [ ]         STREAM     CONNECTED     11068    /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     11066    
unix  3      [ ]         STREAM     CONNECTED     40486    /run/systemd/journal/stdout
unix  3      [ ]         DGRAM                    8960     
unix  2      [ ]         DGRAM                    11058    
unix  3      [ ]         STREAM     CONNECTED     11210    /run/systemd/journal/stdout
unix  2      [ ]         DGRAM                    40474    
unix  3      [ ]         STREAM     CONNECTED     10510    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     8931     /run/systemd/journal/stdout
unix  3      [ ]         DGRAM                    8961     

(test-3) Calling .GetSSHHostname
(test-3) Calling .GetSSHPort
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHUsername
Using SSH client type: external
{[-o BatchMode=yes -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none ubuntu@52.29.118.23 -o IdentitiesOnly=yes -i /Users/ilya/.docker/machine/machines/test-3/id_rsa -p 22] /usr/bin/ssh}
About to run SSH command:
netstat -an
SSH cmd err, output: <nil>: Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State      
tcp        0      0 10.0.3.1:53             0.0.0.0:*               LISTEN     
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN     
tcp        0     72 172.31.0.37:22          82.22.129.232:63947     ESTABLISHED
tcp        0      0 172.31.0.37:59748       52.28.64.56:80          TIME_WAIT  
tcp        0      0 172.31.0.37:44772       52.28.81.96:80          TIME_WAIT  
tcp        0      0 172.31.0.37:33790       91.189.88.149:80        TIME_WAIT  
tcp6       0      0 fe80::d024:eeff:fee5:53 :::*                    LISTEN     
tcp6       0      0 :::22                   :::*                    LISTEN     
udp        0      0 0.0.0.0:30771           0.0.0.0:*                          
udp        0      0 10.0.3.1:53             0.0.0.0:*                          
udp        0      0 0.0.0.0:67              0.0.0.0:*                          
udp        0      0 0.0.0.0:68              0.0.0.0:*                          
udp6       0      0 fe80::d024:eeff:fee5:53 :::*                               
udp6       0      0 :::28829                :::*                               
Active UNIX domain sockets (servers and established)
Proto RefCnt Flags       Type       State         I-Node   Path
unix  7      [ ]         DGRAM                    8040     /run/systemd/journal/dev-log
unix  2      [ ACC ]     STREAM     LISTENING     8041     /run/systemd/journal/stdout
unix  7      [ ]         DGRAM                    8042     /run/systemd/journal/socket
unix  2      [ ]         DGRAM                    40777    /run/user/1000/systemd/notify
unix  2      [ ACC ]     STREAM     LISTENING     40778    /run/user/1000/systemd/private
unix  2      [ ACC ]     SEQPACKET  LISTENING     8274     /run/udev/control
unix  2      [ ]         DGRAM                    8416     /run/systemd/journal/syslog
unix  2      [ ACC ]     STREAM     LISTENING     10983    /sys/fs/cgroup/cgmanager/sock
unix  2      [ ACC ]     STREAM     LISTENING     10229    /var/lib/lxd/unix.socket
unix  2      [ ACC ]     STREAM     LISTENING     10226    /run/uuidd/request
unix  2      [ ACC ]     STREAM     LISTENING     10227    /var/run/dbus/system_bus_socket
unix  2      [ ACC ]     STREAM     LISTENING     10271    /run/acpid.socket
unix  2      [ ]         DGRAM                    8031     /run/systemd/notify
unix  2      [ ACC ]     STREAM     LISTENING     8032     /run/systemd/private
unix  2      [ ]         DGRAM                    40760    
unix  2      [ ]         DGRAM                    9702     
unix  2      [ ]         DGRAM                    10093    
unix  3      [ ]         STREAM     CONNECTED     40752    
unix  3      [ ]         STREAM     CONNECTED     10601    
unix  3      [ ]         STREAM     CONNECTED     11256    
unix  3      [ ]         STREAM     CONNECTED     40850    
unix  3      [ ]         STREAM     CONNECTED     10660    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     13189    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     10793    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     40771    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     11309    /run/systemd/journal/stdout
unix  2      [ ]         DGRAM                    11601    
unix  3      [ ]         STREAM     CONNECTED     9498     /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     11531    /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     11582    /var/run/dbus/system_bus_socket
unix  3      [ ]         DGRAM                    9708     
unix  3      [ ]         STREAM     CONNECTED     11322    
unix  2      [ ]         DGRAM                    8950     
unix  3      [ ]         STREAM     CONNECTED     10790    
unix  3      [ ]         STREAM     CONNECTED     11067    
unix  2      [ ]         DGRAM                    37936    
unix  3      [ ]         STREAM     CONNECTED     8929     
unix  3      [ ]         STREAM     CONNECTED     10552    
unix  3      [ ]         DGRAM                    9710     
unix  3      [ ]         DGRAM                    9707     
unix  3      [ ]         STREAM     CONNECTED     10662    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     11530    
unix  3      [ ]         STREAM     CONNECTED     11157    
unix  3      [ ]         STREAM     CONNECTED     10498    
unix  3      [ ]         STREAM     CONNECTED     13179    
unix  3      [ ]         STREAM     CONNECTED     11581    
unix  3      [ ]         STREAM     CONNECTED     10747    
unix  2      [ ]         DGRAM                    11312    
unix  3      [ ]         STREAM     CONNECTED     9496     
unix  3      [ ]         STREAM     CONNECTED     11324    /var/run/dbus/system_bus_socket
unix  3      [ ]         DGRAM                    9709     
unix  3      [ ]         STREAM     CONNECTED     11068    /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     11066    
unix  2      [ ]         DGRAM                    40757    
unix  3      [ ]         DGRAM                    8960     
unix  2      [ ]         DGRAM                    11058    
unix  3      [ ]         STREAM     CONNECTED     11210    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     40851    
unix  3      [ ]         STREAM     CONNECTED     10510    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     8931     /run/systemd/journal/stdout
unix  2      [ ]         DGRAM                    40700    
unix  3      [ ]         DGRAM                    8961     

(test-3) Calling .GetSSHHostname
(test-3) Calling .GetSSHPort
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHKeyPath
(test-3) Calling .GetSSHUsername
Using SSH client type: external
{[-o BatchMode=yes -o PasswordAuthentication=no -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=quiet -o ConnectionAttempts=3 -o ConnectTimeout=10 -o ControlMaster=no -o ControlPath=none ubuntu@52.29.118.23 -o IdentitiesOnly=yes -i /Users/ilya/.docker/machine/machines/test-3/id_rsa -p 22] /usr/bin/ssh}
About to run SSH command:
netstat -an
SSH cmd err, output: <nil>: Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State      
tcp        0      0 10.0.3.1:53             0.0.0.0:*               LISTEN     
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN     
tcp        0      0 172.31.0.37:59748       52.28.64.56:80          TIME_WAIT  
tcp        0      0 172.31.0.37:44772       52.28.81.96:80          TIME_WAIT  
tcp        0      0 172.31.0.37:33790       91.189.88.149:80        TIME_WAIT  
tcp        0     72 172.31.0.37:22          82.22.129.232:63948     ESTABLISHED
tcp6       0      0 fe80::d024:eeff:fee5:53 :::*                    LISTEN     
tcp6       0      0 :::22                   :::*                    LISTEN     
udp        0      0 0.0.0.0:30771           0.0.0.0:*                          
udp        0      0 10.0.3.1:53             0.0.0.0:*                          
udp        0      0 0.0.0.0:67              0.0.0.0:*                          
udp        0      0 0.0.0.0:68              0.0.0.0:*                          
udp6       0      0 fe80::d024:eeff:fee5:53 :::*                               
udp6       0      0 :::28829                :::*                               
Active UNIX domain sockets (servers and established)
Proto RefCnt Flags       Type       State         I-Node   Path
unix  7      [ ]         DGRAM                    8040     /run/systemd/journal/dev-log
unix  2      [ ACC ]     STREAM     LISTENING     8041     /run/systemd/journal/stdout
unix  7      [ ]         DGRAM                    8042     /run/systemd/journal/socket
unix  2      [ ]         DGRAM                    41060    /run/user/1000/systemd/notify
unix  2      [ ACC ]     STREAM     LISTENING     41061    /run/user/1000/systemd/private
unix  2      [ ACC ]     SEQPACKET  LISTENING     8274     /run/udev/control
unix  2      [ ]         DGRAM                    8416     /run/systemd/journal/syslog
unix  2      [ ACC ]     STREAM     LISTENING     10983    /sys/fs/cgroup/cgmanager/sock
unix  2      [ ACC ]     STREAM     LISTENING     10229    /var/lib/lxd/unix.socket
unix  2      [ ACC ]     STREAM     LISTENING     10226    /run/uuidd/request
unix  2      [ ACC ]     STREAM     LISTENING     10227    /var/run/dbus/system_bus_socket
unix  2      [ ACC ]     STREAM     LISTENING     10271    /run/acpid.socket
unix  2      [ ]         DGRAM                    8031     /run/systemd/notify
unix  2      [ ACC ]     STREAM     LISTENING     8032     /run/systemd/private
unix  3      [ ]         STREAM     CONNECTED     41054    /run/systemd/journal/stdout
unix  2      [ ]         DGRAM                    9702     
unix  2      [ ]         DGRAM                    10093    
unix  3      [ ]         STREAM     CONNECTED     10601    
unix  3      [ ]         STREAM     CONNECTED     11256    
unix  2      [ ]         DGRAM                    40983    
unix  3      [ ]         STREAM     CONNECTED     10660    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     13189    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     10793    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     11309    /run/systemd/journal/stdout
unix  2      [ ]         DGRAM                    11601    
unix  3      [ ]         STREAM     CONNECTED     9498     /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     11531    /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     11582    /var/run/dbus/system_bus_socket
unix  3      [ ]         DGRAM                    9708     
unix  3      [ ]         STREAM     CONNECTED     11322    
unix  2      [ ]         DGRAM                    8950     
unix  3      [ ]         STREAM     CONNECTED     10790    
unix  3      [ ]         STREAM     CONNECTED     11067    
unix  3      [ ]         STREAM     CONNECTED     41133    
unix  2      [ ]         DGRAM                    37936    
unix  3      [ ]         STREAM     CONNECTED     8929     
unix  3      [ ]         STREAM     CONNECTED     10552    
unix  3      [ ]         DGRAM                    9710     
unix  3      [ ]         DGRAM                    9707     
unix  3      [ ]         STREAM     CONNECTED     10662    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     11530    
unix  3      [ ]         STREAM     CONNECTED     11157    
unix  3      [ ]         STREAM     CONNECTED     10498    
unix  3      [ ]         STREAM     CONNECTED     13179    
unix  2      [ ]         DGRAM                    41043    
unix  3      [ ]         STREAM     CONNECTED     11581    
unix  3      [ ]         STREAM     CONNECTED     10747    
unix  2      [ ]         DGRAM                    11312    
unix  3      [ ]         STREAM     CONNECTED     9496     
unix  3      [ ]         STREAM     CONNECTED     11324    /var/run/dbus/system_bus_socket
unix  3      [ ]         DGRAM                    9709     
unix  3      [ ]         STREAM     CONNECTED     11068    /var/run/dbus/system_bus_socket
unix  3      [ ]         STREAM     CONNECTED     11066    
unix  2      [ ]         DGRAM                    41040    
unix  3      [ ]         DGRAM                    8960     
unix  2      [ ]         DGRAM                    11058    
unix  3      [ ]         STREAM     CONNECTED     11210    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     41035    
unix  3      [ ]         STREAM     CONNECTED     10510    /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     8931     /run/systemd/journal/stdout
unix  3      [ ]         STREAM     CONNECTED     41134    
unix  3      [ ]         DGRAM                    8961     

Error creating machine: Error running provisioning: Unable to verify the Docker daemon is listening: Maximum number of retries (10) exceeded
errordeveloper commented 8 years ago

Oops, looks like I wasn't using 0.6.0. It's really odd, may be toolbox upgrade didn't work properly or I missed something.

nathanleclaire commented 8 years ago

Thanks for following up to close @errordeveloper !

davad commented 8 years ago

FYI, had the same problem. Upgrading docker-machine fixed it.