From 652659361c66a7ccab398ee20589b9e206463ab5 Mon Sep 17 00:00:00 2001 From: John Mulhausen Date: Fri, 15 Dec 2017 15:38:44 -0800 Subject: [PATCH] Offer --native-ssh workaround Fixes #5513 --- get-started/part4.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/get-started/part4.md b/get-started/part4.md index a9eee63404..d841336712 100644 --- a/get-started/part4.md +++ b/get-started/part4.md @@ -187,6 +187,15 @@ To add a manager to this swarm, run 'docker swarm join-token manager' and follow > which is the Docker daemon port. Do not use this port or > [you may experience errors](https://forums.docker.com/t/docker-swarm-join-with-virtualbox-connection-error-13-bad-certificate/31392/2){: target="_blank" class="_"}. +> Having trouble using SSH? Try the --native-ssh flag +> +> Docker Machine has [the option to let you use your own system's SSH](/machine/reference/ssh/#different-types-of-ssh), if +> for some reason you're having trouble sending commands to your Swarm manager. Just specify the +> `--native-ssh` flag when invoking the `ssh` command: +> +> ``` +> docker-machine --native-ssh ssh myvm1 ... +> ``` As you can see, the response to `docker swarm init` contains a pre-configured `docker swarm join` command for you to run on any nodes you want to add. Copy