Documentationchevron_rightVPS Management

VPS Management · 3 min read

Power actions: Start, Stop, Restart, Power Off

When and how to use each power action, and what the difference is between Stop and Power Off.

Last updated March 20, 2026

Power actions explained

ActionWhat it doesWhen to use
StartPowers on a stopped VPSAfter intentionally stopping your server
StopGraceful shutdown (ACPI signal)Routine maintenance, before resizing
RestartGraceful rebootAfter software updates, config changes
Power OffHard stop (like pulling the power)VPS is frozen / unresponsive

⚠️ Power Off does not flush disk write caches. Use it only as a last resort when the guest OS is unresponsive, as it can cause filesystem corruption. Run fsck on next boot if in doubt.

How to perform a power action

  1. Navigate to Instances → click Manage on the server.
  2. The top-right header shows Start / Stop / Restart / Power Off buttons.
  3. The status badge updates live after the action completes (typically within 30 seconds).

Scheduled reboots

For routine maintenance, schedule a cron job inside the VPS to reboot at a convenient time:

# Reboot every Sunday at 04:00
echo "0 4 * * 0 root /sbin/reboot" >> /etc/crontab

Rebooting after kernel updates

When running apt upgrade or dnf update, a kernel update may be included. The system will not use the new kernel until you reboot. Check if a reboot is needed:

# Debian/Ubuntu
[ -f /var/run/reboot-required ] && echo "Reboot required"

# AlmaLinux/Rocky
needs-restarting -r

Related

Still stuck? Customers get support from the dashboard, and anyone can open a ticket. If you are not a customer yet, VPS plans deploy in minutes with root access and a browser console.

See VPS pricing