After purchasing your VPS from Netpoa, follow these steps to access and manage your server with root access.


✅ Step 1: Check Your Welcome Email

Once your VPS is ready, Netpoa will send you an email with the following details:

  • Server IP Address

  • Root Username (usually: root)

  • Root Password

  • SSH Port (default: 22 unless changed for security)

If you did not receive this email, check your spam/junk folder or contact us via:
. info@netpoa.com |. 0755 515 122


✅ Step 2: Use an SSH Client

Depending on your operating system, use one of the following methods:

For Windows:

  1. Download and install PuTTY.

  2. Open PuTTY and:

    • Host Name/IP: Enter your server IP address.

    • Port: Enter the SSH port (default is 22).

    • Connection Type: SSH.

  3. Click Open.

  4. A terminal will appear prompting:

    • Login as: root

    • Then enter the root password (you won’t see it as you type—just press Enter after typing).

 For macOS or Linux:

Use the Terminal app. Type:

bash
CopyEdit
ssh root@your_server_ip

Example:

bash
CopyEdit
ssh root@196.192.10.25

If you're using a custom port (e.g., 2222):

bash
CopyEdit
ssh root@your_server_ip -p 2222

Then enter your root password.


✅ Step 3: Secure Your VPS (Recommended)

After your first login:

  1. Change your root password:

    bash
    CopyEdit
    passwd
  2. Update system packages (for Ubuntu/Debian):

    bash
    CopyEdit
    apt update && apt upgrade -y

    Or for CentOS/AlmaLinux:

    bash
    CopyEdit
    yum update -y
  3. Create a new sudo user (optional but recommended):

    bash
    CopyEdit
    adduser yourusername usermod -aG sudo yourusername
  4. Disable root login via SSH (optional):

    • Edit SSH config: nano /etc/ssh/sshd_config

    • Set: PermitRootLogin no

    • Then restart SSH: systemctl restart sshd


Note on Security

We strongly recommend:

  • Using SSH key authentication instead of password (ask us for help if needed).

  • Setting up a basic firewall (ufw or firewalld).

  • Installing Fail2Ban or similar tools.


Need Help?

Contact our support team via:

 

Need a Domain or Hosting to Get Started?

If you don’t yet have a domain or email hosting for your business or personal use, Netpoa.com offers reliable, affordable domain registration and hosting services tailored for Tanzania and beyond.

  • Register your .tz domain or international domains with us

  • Get secure email hosting included in our packages

  • Enjoy 24/7 local support to help you set up and manage your emails

Visit Netpoa.com today to get started and own your professional email!

Was this answer helpful? 44 Users Found This Useful (179 Votes)