> ## Documentation Index
> Fetch the complete documentation index at: https://help.freakhosting.com/llms.txt
> Use this file to discover all available pages before exploring further.

# How to Start, Stop, Restart and Power Off Your VPS

> Learn how to control your virtual server's power state using the FREAKHOSTING VPS Control Panel — including boot, shutdown, restart, and power off operations.

## Controlling Your Server's Power State

Your VPS is a full virtual machine, and just like a physical computer, you have complete control over its power state. Whether you need to reboot after a system update, gracefully shut down for maintenance, or force-stop a frozen server, the FREAKHOSTING VPS Control Panel at [cloud.freakhosting.com](https://cloud.freakhosting.com) puts every power action one click away.

<CardGroup cols={2}>
  <Card title="Difficulty" icon="gauge-low">
    Beginner
  </Card>

  <Card title="Time" icon="clock">
    1 Minute
  </Card>
</CardGroup>

***

## Accessing Power Controls

Power controls live on the **Overview** tab of your server's management page.

<Steps>
  <Step title="Navigate to Your Server">
    Click on **Servers** in the top navigation bar, then click **Manage** next to the server you want to control.
  </Step>

  <Step title="Locate the Power Controls">
    On the Overview page, you will see a row of power control buttons across the top of the page: **Boot** (blue), **Shutdown** (blue), **Restart** (blue), **Power Off** (blue), and **Rebuild** (red).

    Just below the server name in the top-left corner, you will also notice three small icons:

    * **Restart icon** (circular arrow) -- quick-restart shortcut
    * **Lock icon** -- toggle rebuild protection
    * **Gear icon** -- open server settings (rename, hostname)
  </Step>
</Steps>

The server's current status is displayed as a badge in the top-right corner -- for example, a green **RUNNING** badge when your server is online.

***

## Understanding Each Power Action

Think of your VPS like a desktop computer sitting on your desk. Each power button maps to something you would do with that physical machine:

<CardGroup cols={2}>
  <Card title="Boot" icon="play">
    **Starts your server** when it is currently powered off. This is the equivalent of pressing the power button on a computer that is turned off. Use this after a shutdown or power off to bring your server back online.

    **When to use it:** Your server is stopped and you need it running again -- for example, after scheduled maintenance or a planned shutdown.
  </Card>

  <Card title="Shutdown" icon="power-off">
    Sends a **graceful shutdown** signal to the operating system. The OS will cleanly close all running services, flush disk writes, and save its state before powering down. This is like clicking **Start > Shut Down** on a Windows PC or running `shutdown now` on Linux.

    **When to use it:** You want to stop your server safely -- for example, before performing a backup snapshot or when you will not need the server for a while.
  </Card>

  <Card title="Restart" icon="rotate-right">
    Performs a **graceful reboot** -- the operating system shuts down cleanly and then boots back up automatically. Think of it as clicking **Restart** in your OS menu.

    **When to use it:** You have applied kernel updates, changed system configurations, or just want a clean reboot to clear temporary issues.
  </Card>

  <Card title="Power Off" icon="bolt-slash">
    Performs an **immediate forced power cut** -- the virtual machine is stopped instantly without giving the operating system any time to shut down. This is like **pulling the power cord out of the wall** on a physical computer.

    **When to use it:** Your server is completely frozen or unresponsive and a normal Shutdown is not working. This is a last resort.
  </Card>
</CardGroup>

***

## Shutdown vs. Power Off -- Know the Difference

This is the single most important distinction in server power management. Getting it wrong can cost you data.

|                        | Shutdown                                                             | Power Off                                                    |
| ---------------------- | -------------------------------------------------------------------- | ------------------------------------------------------------ |
| **Real-world analogy** | Clicking **Start > Shut Down** on your PC                            | Yanking the power cable from the wall                        |
| **What happens**       | OS closes programs, saves data, flushes disk writes, then powers off | Power is cut instantly -- no warning, no cleanup             |
| **Data safety**        | Safe -- data is preserved                                            | Risky -- unsaved data may be lost or corrupted               |
| **File system**        | Clean unmount                                                        | Risk of file system inconsistencies                          |
| **When to use**        | Normal day-to-day shutdowns                                          | Only when the server is frozen and Shutdown does not respond |

<Warning>
  **Power Off should only be used as a last resort.** Forcing power off while the operating system is writing data to disk can cause file system corruption, database inconsistencies, or loss of unsaved work. Always try **Shutdown** first and give it a few minutes to complete before resorting to Power Off.
</Warning>

***

## Quick Restart Shortcut

You do not always need to scroll to the main power buttons. There is a faster way:

On the Overview page, look at the **three small icons** directly below your server name (top-left area). The first icon -- a **circular arrow** -- is a quick-restart shortcut.

Clicking it opens a simple confirmation dialog:

* **Cancel** -- closes the dialog without taking any action.
* **Restart** -- confirms and initiates the graceful reboot.

This is perfect for quick reboots after applying updates or tweaking configurations.

***

## Real-World Scenarios

Here are some common situations and which power action to reach for:

| Scenario                                                              | Recommended Action                                                                      |
| --------------------------------------------------------------------- | --------------------------------------------------------------------------------------- |
| You just installed kernel updates via SSH                             | **Restart** -- apply updates with a clean reboot                                        |
| You are going on vacation and want to stop billing on an hourly VPS   | **Shutdown** -- gracefully power down                                                   |
| Your server is completely frozen and SSH is not connecting            | **Power Off** followed by **Boot** -- force-stop and restart                            |
| Server was shut down overnight and you need it running for the day    | **Boot** -- bring it back online                                                        |
| A runaway process is consuming all RAM and the server is unresponsive | Try **Shutdown** first, wait 2 minutes; if no response, use **Power Off** then **Boot** |
| You want to take a clean backup snapshot                              | **Shutdown** first, create the snapshot, then **Boot**                                  |

***

## Confirmation Dialogs

For your protection, every power action displays a **confirmation dialog** before executing. You will always be asked to confirm before any power state change is applied. This prevents accidental shutdowns, restarts, or forced power offs -- especially handy if you manage multiple servers and want to make sure you are clicking the right one.

***

## Understanding Server Status

After performing a power action, the status badge in the top-right corner of the management page updates to reflect the current state:

| Status      | Color  | Description                                                              |
| ----------- | ------ | ------------------------------------------------------------------------ |
| **Running** | Green  | The server is powered on and operating normally                          |
| **Stopped** | Red    | The server is powered off                                                |
| **Busy**    | Orange | A power action is in progress (booting, shutting down, restarting, etc.) |

If you see **Busy** for more than a few minutes, the action may be taking longer than expected. Give it up to 5 minutes before trying a different approach.

***

<AccordionGroup>
  <Accordion title="What is the difference between Shutdown and Power Off?">
    **Shutdown** sends a graceful signal to the operating system, allowing it to close processes, flush disk writes, and save data before powering down -- just like clicking "Shut Down" in Windows or running `shutdown now` in Linux. **Power Off** immediately cuts power without any warning -- like pulling the plug on a physical computer. Always use Shutdown unless the server is completely unresponsive.
  </Accordion>

  <Accordion title="How long does a restart take?">
    A typical restart completes within 30 seconds to 2 minutes, depending on the operating system and any services that need to start. If your server has not come back online after 5 minutes, try using **Power Off** followed by **Boot** to force a fresh start.
  </Accordion>

  <Accordion title="My server is not responding to Shutdown — what should I do?">
    If a graceful shutdown does not complete after 2-3 minutes, the operating system may be frozen. In this case, use **Power Off** to force the server to stop, then use **Boot** to start it again. If the issue persists across reboots, consider using **Rescue Mode** to investigate the underlying problem from a recovery environment.
  </Accordion>

  <Accordion title="What about the Rebuild button?">
    The **Rebuild** button (shown in red, separate from the blue power buttons) completely wipes your server and reinstalls the operating system from scratch. This is a destructive action that erases all data and is covered in a separate guide: [How to Rebuild and Reinstall Your VPS Operating System](/portals/vps-panel/how-to-rebuild-and-reinstall-your-vps).
  </Accordion>

  <Accordion title="Will I lose data if I use Restart?">
    A graceful **Restart** is safe for your data. The operating system will properly close all running processes and flush disk writes before rebooting. However, any unsaved work in running applications (such as a file open in an editor but not saved) will be lost, just like restarting your home computer.
  </Accordion>
</AccordionGroup>

***

<Note>
  ### Need Extra Help?

  If you encounter any issues, our support team is ready to assist:

  * **Live Chat:** Quick assistance via our website.
  * **Support Ticket:** [Open a Ticket](https://freakhosting.com/clientarea/submitticket.php)
  * **Discord:** [Join our Community](https://discord.gg/freakhosting)
  * **Email:** [support@freakhosting.com](mailto:support@freakhosting.com)
</Note>

<Tip>
  ### Save on Your Hosting

  Ready to get a new server? Use code **KB20** at checkout for **20% off** your first month!
</Tip>

***

<div align="center">
  **Last Updated:** March 2026 | **VPS Support:** Power management simplified.
</div>
