Docs / Windows Server / Connecting to a Windows VPS via RDP

Connecting to a Windows VPS via RDP

By Admin · Mar 1, 2026 · Updated Apr 24, 2026 · 29 views · 2 min read

What Is RDP?

Remote Desktop Protocol (RDP) is the standard method for connecting to and managing a Windows Breeze. It provides a full graphical desktop experience, allowing you to interact with your server as if you were sitting in front of it.

Prerequisites

  • A Windows Breeze with RDP enabled
  • Your server IP address and administrator credentials
  • A Remote Desktop client on your local machine

Connecting from Windows

Windows includes a built-in RDP client. Open the Start menu and search for Remote Desktop Connection, or press Win + R and type:

mstsc

Enter your Breeze's IP address and click Connect. When prompted, enter your administrator username and password.

Connecting from macOS

Download Microsoft Remote Desktop from the Mac App Store. Add a new PC connection with your Breeze's IP address. Enter your credentials and connect.

Connecting from Linux

Install an RDP client such as Remmina or xfreerdp:

sudo apt install remmina remmina-plugin-rdp

Or connect via the command line:

xfreerdp /v:YOUR_SERVER_IP /u:Administrator /p:YourPassword /size:1920x1080

Changing the RDP Port

For added security, change the default RDP port (3389) via the Windows Registry:

reg add "HKLM\System\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp" /v PortNumber /t REG_DWORD /d 4489 /f

Then restart the Remote Desktop service and update your firewall to allow the new port.

Troubleshooting Tips

  • Ensure RDP is enabled in System Properties > Remote Settings
  • Verify Windows Firewall allows inbound RDP connections
  • Check that Network Level Authentication (NLA) settings match your client

Was this article helpful?