An Azure service that is used to provision Windows and Linux virtual machines.
Hello @Sam Rabinovich ,Are you looking for assistance accessing a Linux VM in Azure?
The most common method to access a Linux VM is through the Secure Shell (SSH) protocol. You can open a CLI/terminal on your local machine and use the following command:
ssh <username>@<public-ip-of-your-vm>
Please replace <username> and <public-ip-of-your-vm> with the appropriate values for your virtual machine.
If you are accessing the VM using an SSH key pair, you can use the following command:
ssh -i ~/.ssh/myKey.pem azureuser@20.51.230.13
Make sure to replace the key file path and VM public IP address with the correct values for your environment.
Please refer to this link for more detailed steps: https://learn.microsoft.com/en-us/azure/virtual-machines/linux-vm-connect?tabs=Linux
Are you looking to connect to an Azure Windows VM using Remote Desktop Protocol (RDP)?
To connect, open the Remote Desktop (RDP) application on your local machine. Enter the public IP address of the virtual machine and click Connect.
When prompted, provide the username and password configured for the VM, then click OK to establish the connection.
Please refer to this link for more detailed steps: https://learn.microsoft.com/en-us/azure/virtual-machines/windows/connect-rdp#connect-to-the-virtual-machine
are you looking to Install and configure xrdp to use Remote Desktop with Ubuntu. Please follow this link for more detailed information: https://learn.microsoft.com/en-us/azure/virtual-machines/linux/use-remote-desktop?tabs=azure-cli
Note: Please ensure that the required ports are allowed in the NSG inbound rules:
- Port 3389 for RDP (Windows VM access)
- Port 22 for SSH (Linux VM access).
Hope this helps. Please let me know if you have any queries