Skip to content

Connecting to the data machine

Alexis Gallagher edited this page Jun 27, 2024 · 2 revisions

Add this stanza to your ~/.ssh/config:

Host hunter
     HostName 168.63.13.220
     User azureuser
     ForwardAgent yes

Then use these commands.

To start the machine:

az vm start --name hunter --resource-group bert24eu

To stop it:

az vm deallocate --name hunter --resource-group bert24eu

To check if it is on:

az vm get-instance-view --name hunter --resource-group bert24eu --query instanceView.statuses[1] --output table

To connect to it:

ssh hunter
Clone this wiki locally