* add Cloud link to Azure topics WIP: 1st draft includes, tabs re: SSH key topics adding more Azure Cloud content and SSH includes copyedits cloud azure, aws topics organization, videos incorporated review comments copyedits, colour-coded TBD's copyedits to make create a swarm w/AWS and Azure consistent updated links to use new titles added SSH key setup to the Swarm overview list of links updated link services titles add ssh to glossary, note autoredeploy limitations Signed-off-by: Victoria Bialas <victoria.bialas@docker.com> * screen snaps, updates per latest on staging Signed-off-by: Victoria Bialas <victoria.bialas@docker.com> * added link Signed-off-by: Victoria Bialas <victoria.bialas@docker.com> * resolved conflicts in TOC Signed-off-by: Victoria Bialas <victoria.bialas@docker.com> * added Azure accept EULA/enable subscription, more steps, snaps Signed-off-by: Victoria Bialas <victoria.bialas@docker.com> * fixed the comments to not break numbering Signed-off-by: Victoria Bialas <victoria.bialas@docker.com> * new snaps and review comments incorporated from Alberto and Ryan Signed-off-by: Victoria Bialas <victoria.bialas@docker.com> * added screen snaps, review comments, more steps Signed-off-by: Victoria Bialas <victoria.bialas@docker.com> * added screen snaps, detail to Azure create swarm Signed-off-by: Victoria Bialas <victoria.bialas@docker.com> * new snap showing linked AWS as provider Signed-off-by: Victoria Bialas <victoria.bialas@docker.com> * AWS screen snaps and detailed steps Signed-off-by: Victoria Bialas <victoria.bialas@docker.com> * AWS swarm name rules clarification Signed-off-by: Victoria Bialas <victoria.bialas@docker.com> * added x-refs to edition topics on config per reviews Signed-off-by: Victoria Bialas <victoria.bialas@docker.com> * added connect screen snap w/production commands, AWS pricing Signed-off-by: Victoria Bialas <victoria.bialas@docker.com> * added more code examples and clarification to swarm connect Signed-off-by: Victoria Bialas <victoria.bialas@docker.com> * added more code examples for Azure and AWS Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
3.2 KiB
- Mac
- Windows
- Linux
{% capture mac-content-find %}
-
Open a command-line terminal.
$ ls -al ~/.sshThis lists files in your
.sshdirectory. -
Check to see if you already have a SSH keys you can use.
Default file names for public keys are:
- id_dsa.pub
- id_ecdsa.pub
- id_ed25519.pub
- id_rsa.pub
Here are example results showing a public and private key pair with the default names:
drwx------ 8 me staff 272 Mar 27 14:04 . drwxr-xr-x+ 69 me staff 2346 Apr 7 10:03 .. -rw-r--r-- 1 me staff 420 Mar 27 14:04 config -rw------- 1 me staff 3326 Mar 27 14:01 id_rsa -rw-r--r-- 1 me staff 752 Mar 27 14:01 id_rsa.pubThe file
id_rsacontains the private key which resides on the local machine, andid_rsa.pubis the public key we can provide to a remote account.
{% endcapture %} {{ mac-content-find | markdownify }}
{% capture win-content-find %}
-
Open Git Bash.
$ ls -al ~/.sshThis will list files in your
.sshdirectory. -
Check to see if you already have SSH keys you can use.
Default file names for public keys are:
- id_dsa.pub
- id_ecdsa.pub
- id_ed25519.pub
- id_rsa.pub
Here are example results showing a public and private key pair with the default names:
drwx------ 8 me staff 272 Mar 27 14:04 . drwxr-xr-x+ 69 me staff 2346 Apr 7 10:03 .. -rw-r--r-- 1 me staff 420 Mar 27 14:04 config -rw------- 1 me staff 3326 Mar 27 14:01 id_rsa -rw-r--r-- 1 me staff 752 Mar 27 14:01 id_rsa.pubThe file
id_rsacontains the private key which resides on the local machine, andid_rsa.pubis the public key we can provide to a remote account.
{% endcapture %} {{ win-content-find | markdownify }}
{% capture linux-content-find %}
-
Open a command-line terminal.
$ ls -al ~/.sshThis will list files in your
.sshdirectory. -
Check to see if you already have a SSH keys you can use.
Default file names for public keys are:
- id_dsa.pub
- id_ecdsa.pub
- id_ed25519.pub
- id_rsa.pub
Here are example results showing a public and private key pair with the default names:
drwx------ 8 me staff 272 Mar 27 14:04 . drwxr-xr-x+ 69 me staff 2346 Apr 7 10:03 .. -rw-r--r-- 1 me staff 420 Mar 27 14:04 config -rw------- 1 me staff 3326 Mar 27 14:01 id_rsa -rw-r--r-- 1 me staff 752 Mar 27 14:01 id_rsa.pubThe file
id_rsacontains the private key which resides on the local machine, andid_rsa.pubis the public key we can provide to a remote account.
{% endcapture %} {{ linux-content-find | markdownify }}