Skip to main contentSkip to navigation
[email protected]
Client AreaSupport
Hosting Mammoth
HostingMammothYour Data, Our Responsibility
Home
Solutions
Hosting Services
Store
Pricing
About
Blog
API
Contact

Stay Ahead of the Curve

Get the latest insights on cybersecurity, AI innovations, and enterprise data solutions delivered to your inbox.

Hosting Mammoth
HostingMammothEnterprise Solutions

Enterprise-grade data solutions. Hosting, recovery, cybersecurity, and AI-powered services for businesses worldwide.

[email protected]
Sun - Fri, 9:00am - 5:00pm

Services

  • Cloud Hosting
  • Data Recovery
  • Cybersecurity
  • Legal Support
  • MSP Services
  • Web Development
  • AI Services
  • Free Server Migration

Hosting

  • VPS Hosting (NVMe SSD)
  • VDS Hosting (NVMe)
  • Storage VPS (High SSD)
  • GPU Servers
  • Managed Services
  • Cloud Firewall
  • Load Balancer
  • One-Click Apps
  • n8n Hosting
  • Object Storage
  • FAQ

Company

  • Store
  • Pricing
  • About Us
  • Locations
  • Blog
  • Testimonials
  • Contact
  • Affiliate Program
  • White-Label
  • Terms of Service
  • Privacy Policy
  • Browser Cookies
  • SLA

Support

  • Client Area
  • Submit Ticket
  • Knowledge Base
  • Server Status
  • API Documentation

© 2026 Hosting Mammoth. All rights reserved.

Knowledge Base
Getting StartedAccount ManagementVPS HostingGPU ServersStorage VPSCloud FirewallLoad BalancerServer ManagementBilling & PaymentsSupport & TicketsAffiliate ProgramReseller ProgramMarketplace & Appsn8n HostingManaged ServicesServer MigrationAPI & DevelopersSecurityTroubleshootingGlossaryInstall Guides
  1. Home
  2. /
  3. Support
  4. /
  5. Server Management
  6. /
  7. Server Console
GUIDEServer Management

Using the Web Console (VNC/NoVNC)

5 min read

The web console provides direct, browser-based access to your server's display and keyboard input through VNC (Virtual Network Computing) technology. Unlike SSH, the web console works even when your server's network is misconfigured, the SSH service is down, or the firewall is blocking connections.

This guide explains how to launch the web console, common use cases, and tips for getting the most out of this tool.

When to Use the Web Console

The web console is invaluable in situations where standard SSH access is not available:

  • Network misconfiguration — If you accidentally changed network settings and lost connectivity.
  • Firewall lockout — If firewall rules are blocking SSH connections.
  • SSH service failure — If the SSH daemon crashed or was disabled.
  • Boot issues — If the server is stuck at a boot prompt, GRUB menu, or filesystem check.
  • Rescue mode — When diagnosing and repairing a server that cannot boot normally.
  • OS installation — When performing manual operating system installations or reinstalls.

Launching the Web Console

  • Log in to your Data Mammoth dashboard.
  • Navigate to Servers and click on your server.
  • Click the Console tab or button.
  • A new browser window or panel opens with the VNC console.
  • The console connects directly to your server's virtual display. You will see whatever the server is currently showing — a login prompt, a desktop environment, a boot screen, or error messages.

    Logging In via the Console

    When the console opens, you will typically see a login prompt. Enter your credentials:

    text
    server login: root
    Password: **

    Type your username and press Enter, then type your password and press Enter. Note that the password field does not display characters as you type — this is normal behavior for Linux terminals.

    If you have forgotten your root password, you may need to boot into recovery mode or use a rescue system to reset it. See Forgot Password — How to Reset.

    Console Features

    Keyboard Input

    The web console captures keyboard input and sends it directly to the server. Most standard key combinations work, including:

    • Ctrl+C — Interrupt a running process.
    • Ctrl+D — Log out of the current shell session.
    • Tab — Command autocompletion.
    • Arrow keys — Navigate command history and text.
    Some key combinations may be intercepted by your browser. If a shortcut does not work as expected, look for an on-screen keyboard or special key buttons provided by the console interface.

    Clipboard Operations

    Copy and paste between your local machine and the web console may require a special clipboard panel:

  • Look for a clipboard icon or panel on the side of the console window.
  • To paste text into the console, type or paste the text into the clipboard panel, then it will be sent to the server.
  • To copy text from the console, select the text in the clipboard panel after it appears.
  • The exact clipboard mechanism varies by browser and console implementation.

    Screen Resolution

    The default console resolution is typically 800x600 or 1024x768. For most command-line tasks, this is sufficient. If you need a different resolution, you can change it from within the operating system:

    bash
    # Check current resolution
    xrandr

    Set a new resolution (if supported)

    xrandr -s 1280x1024

    Note that resolution options depend on the virtual display driver and may be limited.

    Common Console Tasks

    Fixing Network Configuration

    If you have locked yourself out by misconfiguring the network:

    bash
    # View current network configuration
    ip addr show

    Restart networking service

    sudo systemctl restart networking # Debian/Ubuntu sudo systemctl restart NetworkManager # CentOS/AlmaLinux

    Manually set an IP address (temporary)

    sudo ip addr add 203.0.113.10/24 dev eth0 sudo ip route add default via 203.0.113.1

    Fixing Firewall Rules

    If your firewall is blocking SSH:

    bash
    # UFW (Ubuntu/Debian)
    sudo ufw allow 22/tcp
    sudo ufw reload

    firewalld (CentOS/AlmaLinux)

    sudo firewall-cmd --permanent --add-service=ssh sudo firewall-cmd --reload

    Restarting SSH Service

    If the SSH daemon is not running:

    bash
    sudo systemctl status sshd
    sudo systemctl restart sshd
    sudo systemctl enable sshd

    Checking Boot Errors

    If the server is not booting properly, the console will show boot messages, including any errors. Common issues include:

    • Filesystem corruption requiring fsck
    • Missing boot configuration
    • Failed service preventing boot completion
    Use journalctl -xb after booting to review system logs from the current boot.

    Console Limitations

    • Performance — The web console is slower than SSH for interactive work. Use it for troubleshooting and repair, then switch back to SSH for regular administration.
    • File transfer — You cannot transfer files through the console directly. Use SSH/SCP/SFTP once connectivity is restored.
    • Session persistence — If you close the browser tab, the console session may disconnect. The server itself continues running — only your view is disconnected.
    • Copy/paste — Clipboard operations are more limited than with SSH terminal emulators.

    Tips for Effective Console Use

  • Keep sessions short. Use the console to fix the immediate issue, then reconnect via SSH for ongoing work.
  • Use simple commands. Avoid running text editors with complex interfaces through VNC — use simple commands like sed, echo, or cat to make configuration changes.
  • Take notes. If you see error messages on the console screen, write them down or take a screenshot before they scroll away.
  • Check your browser. For the best experience, use an up-to-date version of Chrome, Firefox, or Edge.
  • What to Do Next

    • Managing SSH Keys — Set up SSH key authentication for secure access.
    • Server Not Booting — Rescue Mode Guide — Diagnose and fix boot problems.
    • Firewall Blocking Legitimate Traffic — Resolve firewall lockout issues.
    • Understanding Your Server Dashboard — Explore all dashboard features.

    Was this article helpful?

    ← Back to Server ManagementBrowse all categories →

    Still have questions?

    Contact Support →Submit a Ticket