Rescue Mode
Boot your instance into a rescue system for emergency recovery and troubleshooting.
Rescue Mode
Rescue mode boots your instance into a minimal Linux rescue system, allowing you to troubleshoot boot issues, repair filesystems, reset passwords, or recover data.
How It Works
- A rescue ISO is temporarily attached to your instance
- The boot order is changed to boot from the rescue system
- Your instance reboots into the rescue environment
- Your original disks are available for mounting and repair
Enabling Rescue Mode
- Go to your instance detail page
- Click Enable Rescue in the power controls
- Confirm the action (this will reboot your instance)
- Connect via Console (VNC or serial terminal)
Enabling rescue mode will reboot your instance. All running processes will be stopped.
Working in Rescue Mode
Once booted into rescue mode, your original disk is NOT mounted automatically. Mount it manually:
# List available disks
lsblk
# Mount your root partition
mount /dev/sda1 /mnt
# Chroot into your system (optional)
chroot /mntCommon Tasks
Reset root password:
mount /dev/sda1 /mnt
chroot /mnt
passwd root
exitFix fstab:
mount /dev/sda1 /mnt
nano /mnt/etc/fstabCheck filesystem:
fsck /dev/sda1Disabling Rescue Mode
- Go to your instance detail page
- Click Disable Rescue in the power controls
- Your instance will reboot back to its normal OS
Always disable rescue mode when you're done troubleshooting. Leaving it enabled means your instance will boot into the rescue system on every restart.
Next Steps
- Review Cloud Compute for instance management
- Configure Block Storage for persistent volumes
- Learn about Security & Compliance for data protection