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. Start Stop Restart
GUIDEServer Management

How to Start, Stop, and Restart Your Server

6 min read

Managing your server's power state is one of the most fundamental tasks in server administration. Whether you need to apply configuration changes, troubleshoot an issue, or simply power down a server you are not using, Data Mammoth provides multiple ways to control your server's power state directly from the dashboard.

This guide explains each power action, when to use it, and how to perform it safely.

Accessing Power Controls

  • Log in to your Data Mammoth dashboard.
  • Navigate to Servers in the left menu.
  • Click the server you want to manage.
  • The power controls are located in the Overview tab, typically near the top of the page.
  • You will see the current power state displayed as a status badge (Running, Stopped, or Rebooting) alongside the available power action buttons.

    Starting Your Server

    If your server is currently stopped, click the Start button to power it on.

    What Happens When You Start a Server

    • The hypervisor allocates resources (CPU, RAM, disk) to your server.
    • The operating system boots up and starts all configured services.
    • Network interfaces come online, making your server reachable via its IP address.
    • The process typically takes 15 to 60 seconds, depending on your OS and installed services.

    When to Start a Server

    • After a planned maintenance window where the server was shut down.
    • When commissioning a newly provisioned server.
    • After a force stop that was used for troubleshooting.

    Stopping Your Server

    Click the Stop button to gracefully shut down your server.

    Graceful Stop vs. Force Stop

    A graceful stop sends an ACPI shutdown signal to the operating system, which then:

  • Notifies running services to shut down cleanly.
  • Flushes disk write buffers to prevent data loss.
  • Unmounts filesystems properly.
  • Powers off the virtual machine.
  • A force stop immediately cuts power to the server without giving the operating system time to shut down. This is equivalent to pulling the power cord on a physical machine.

    When to Use Graceful Stop

    • Before performing maintenance that requires the server to be offline.
    • When you want to temporarily deactivate a server to reduce resource usage.
    • Before resizing or upgrading your plan (if required by the upgrade process).

    When to Use Force Stop

    • When the server is completely unresponsive and a graceful stop does not complete within a reasonable time (2 to 5 minutes).
    • When the operating system is stuck during shutdown.
    • When the web console shows the server is frozen or in a kernel panic.
    Warning: Force stopping a server can cause data loss or filesystem corruption. Always attempt a graceful stop first.

    Restarting Your Server

    Click the Restart button to perform a graceful reboot. This is equivalent to running sudo reboot from the command line.

    What Happens During a Restart

  • The operating system shuts down all services gracefully.
  • The virtual machine powers off briefly.
  • The server boots back up automatically.
  • All services configured to start on boot resume operation.
  • When to Restart

    • After installing system updates or kernel upgrades.
    • After changing critical configuration files (e.g., network settings, firewall rules, kernel parameters).
    • When a service is misbehaving and a service-level restart did not resolve the issue.
    • After adding or removing server resources.

    Force Restart

    A force restart performs an immediate hard reboot without waiting for the operating system to shut down cleanly. Use this only when:

    • A graceful restart does not complete within a reasonable time.
    • The server is unresponsive to both SSH and the web console.
    • You need to recover from a kernel panic or frozen system.

    Performing Power Actions via SSH

    If you prefer the command line, you can perform power actions directly from an SSH session:

    bash
    # Graceful restart
    sudo reboot

    Graceful shutdown

    sudo shutdown -h now

    Scheduled shutdown (e.g., in 10 minutes)

    sudo shutdown -h +10

    Cancel a scheduled shutdown

    sudo shutdown -c

    Note that SSH-based shutdown and reboot commands perform graceful operations. You cannot force stop or force restart from within SSH — those actions require the Data Mammoth dashboard or API.

    Power Action Best Practices

    Before Stopping or Restarting

  • Save your work. Ensure any in-progress tasks (file transfers, database operations, deployments) are complete.
  • Notify users. If others depend on services running on this server, inform them of the planned downtime.
  • Check for running processes. Use htop or ps aux to verify no critical processes are mid-operation.
  • Create a snapshot. If you are making significant changes, take a snapshot before restarting so you can roll back if needed.
  • After Starting or Restarting

  • Verify the server is online. Check the dashboard status and try connecting via SSH.
  • Confirm services are running. Check that web servers, databases, and application processes started correctly.
  • Review logs. Check /var/log/syslog or journalctl -b for any boot errors.
  • Test your application. Visit your website or test your API endpoints to ensure everything is functioning.
  • Troubleshooting Power Issues

    Server Will Not Start

    • Check if your account has any unpaid invoices that may have triggered a suspension. See How to Pay an Invoice.
    • Verify the server is not in a provisioning or maintenance state.
    • Contact support if the start action completes but the server remains unreachable.

    Graceful Stop Is Taking Too Long

    • Wait at least 2 to 3 minutes — some services take time to shut down.
    • If the stop does not complete after 5 minutes, use a force stop.
    • Investigate what process is blocking shutdown by checking logs after the next boot.

    Server Is Stuck in Rebooting State

    • Wait up to 5 minutes for the reboot to complete.
    • If the status does not change, try a force stop followed by a start.
    • Use the web console to check if the server is stuck at a boot prompt.

    What to Do Next

    • Understanding Your Server Dashboard — Navigate all dashboard features.
    • Monitoring Server Performance — Check resource usage after a restart.
    • Using the Web Console (VNC/NoVNC) — Access your server when SSH is unavailable.
    • Viewing Server Activity Log — Review power action history.

    Was this article helpful?

    ← Back to Server ManagementBrowse all categories →

    Still have questions?

    Contact Support →Submit a Ticket