We're going to use the Azure portal to deploy a jumpbox for the later exercises.
-
Log into the Azure Portal at http://portal.azure.com
-
Click on the "+" in the upper right, then click on 'Compute', then select Ubuntu 16.04, and on the next page, click 'Create'.
-
On the basics page, fill in the following:
- Name: jumpbox (your choice)
- Username: adminuser
- Authentication Type: choose 'Password'
- Password: enter a password
- Resource Group: jumpboxrg
Then click 'OK'
-
On the next page, choose your machine size. Since we're not doing anything fancy on this jumpbox, a DS1_V2 is fine.
-
On the 'Settings' page, just click 'OK'
-
Finally, on the 'Summary' page, review the settings, then click 'OK'
At this point, your linux VM will begin to deploy. This may take a minute or two.
Once your VM has deployed, take a look at the Overview page. Click on the 'Connect' button at the top to get the ssh command to remotely log into your jumpbox.
On Windows and need SSH? Try either Putty or Bitvise SSH
From your laptop, ssh into the jumpbox.
- First, you need to install some prereqs.
sudo apt-get update && sudo apt-get install -y libssl-dev libffi-dev python-dev build-essential
- Next, install the cli
curl -L https://aka.ms/InstallAzureCli | bash
exec -l $SHELL
The cli is now installed!
Finally, configure the output to default to table format. Run:
az configure
and follow the prompts to select 'table' as the default output.