System Operations

The Azure VA portal provides Start, Restart and Stop operations to control the Virtual Appliance connection.

On the Azure portal top menu bar:

Click Start to start a VM

Click Stop to stop the VM

Click Restart to restart the VM

The corresponding CLI commands are:

Start a VM

az vm start --resource-group myResourceGroup --name myVM

Stop a VM

az vm stop --resource-group myResourceGroup --name myVM

Restart a VM

az vm restart --resource-group myResourceGroup --name myVM