Manila Servers: Available! ⭐


Getting Inside Your Server: A Simple Guide to SSH and Remote Desktop

February 13, 20265 views

To connect to your server, you first need to know which Operating System (OS) you installed. The method for accessing a Linux server is different from a Windows server.

1. Connecting to a Windows Server (RDP)

If you installed Windows Server 2019 or 2022, you will use Remote Desktop Connection (RDC).

  • Open RDP: On your local Windows PC, press the Start key and type "Remote Desktop Connection".

  • Computer: Enter the IPv4 Address found in your Client Area (e.g., 38.76.247.98).

  • Username: Typically Administrator.

  • Password: Check the automated email sent by Curt Creation after the installation finished.


    2. Connecting to a Linux Server (SSH)

    If you installed Ubuntu, Debian, or CentOS, you will use SSH (Secure Shell).

    • Windows Users: Use PowerShell or a client like PuTTY.

    • Mac/Linux Users: Open your Terminal.

    • The Command: Type the following and press Enter: ssh root@your_server_ip

    • Security Prompt: The first time you connect, it will ask if you trust the host. Type yes.

    • Password: Paste the root password from your email (note: characters will not appear as you type or paste in Linux terminals).

3. Essential First Steps After Login

Once you are inside your server, it is highly recommended to perform these three tasks immediately to ensure security and performance:

  1. Update the System:

    • Linux: Run apt update && apt upgrade -y (for Ubuntu/Debian).

    • Windows: Run Windows Update from the Settings menu.

  2. Change the Default Password: Use the passwd command in Linux or the User Accounts settings in Windows to set a unique, strong password.

  3. Configure Firewall: Ensure only the necessary ports (like 80 for web or 30120 for FiveM) are open to prevent unauthorized access.