Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Tweak the Azure SSH login instructions #14

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions _posts/2018-10-08-Pushing-Images-to-Azure.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,5 +141,8 @@ Next create an instance either with the Azure portal, or a command similar to th
$ az vm create --resource-group $GROUP --location eastus --name $VHD --image $VHD --admin-username azure-user --generate-ssh-keys
- Running ...

Use your private key via SSH to access the resulting instance as usual. The user to log
in as is ```azure-user```
Private SSH keys will be written to your home directory under ```~/.ssh```. If you do not have
any existing SSH keys, they will become your default SSH keys. The above command will print out
an IP address to access the VM. The user to log in as is ```azure-user```

$ ssh -i ~/.ssh/id_rsa [email protected]