HostUpCloudHostUpCloudDocs

Storage

Manage volumes, snapshots, and backups for your cloud instances.

Storage

Every cloud instance comes with a primary NVMe SSD disk. You can expand your storage with additional volumes, protect your data with snapshots and backups, and scale storage independently of compute.

Volumes

Primary Disk

Every instance is created with a primary disk (scsi0) sized according to your chosen plan. This disk contains the operating system and is tied to the instance lifecycle.

PropertyValue
Devicescsi0
TypeNVMe SSD
Storage optionsdiscard=on, ssd=1, iothread=1
Included withInstance plan
ResizeExpand only (cannot shrink)

The discard=on option enables TRIM support, allowing the SSD to reclaim unused blocks. The ssd=1 flag tells the guest OS the disk is an SSD for optimal I/O scheduling. The iothread=1 option enables dedicated I/O threads for better performance.

Additional Volumes

Attach additional NVMe SSD volumes to your instance for expandable, persistent storage.

Adding a volume:

  1. Navigate to your instance detail page
  2. Go to the Storage or Volumes tab
  3. Click Add Volume
  4. Specify the size (10 GB - 10 TB)
  5. The volume is attached and appears as a new block device

After attaching:

# List available disks
lsblk

# Format the new volume (first time only)
sudo mkfs.ext4 /dev/sdb

# Create a mount point
sudo mkdir -p /mnt/data

# Mount the volume
sudo mount /dev/sdb /mnt/data

Persistent mount (survives reboots):

# Get the UUID of your volume
sudo blkid /dev/sdb

# Add to /etc/fstab
echo "UUID=<your-uuid>  /mnt/data  ext4  defaults,nofail  0  2" | sudo tee -a /etc/fstab

Always use nofail in fstab entries for additional volumes. Without it, your instance may fail to boot if the volume is detached or unavailable.

Resizing Volumes

Volumes can only be expanded — you cannot shrink a volume.

  1. Navigate to the instance → Storage tab
  2. Select the volume to resize
  3. Enter the new size (must be larger than current)
  4. Confirm the resize

After resizing, extend the filesystem inside the instance:

# For ext4 filesystems
sudo resize2fs /dev/sdb

# For XFS filesystems
sudo xfs_growfs /mnt/data

Volume expansion does not require a reboot. You can resize and extend the filesystem while the instance is running.

Detaching Volumes

You can detach additional volumes from an instance without destroying the data.

  1. Unmount the volume inside the instance: sudo umount /mnt/data
  2. Navigate to the instance → Storage tab
  3. Click Detach on the volume
  4. The volume remains in your account and can be reattached to another instance

Always unmount the volume from within the instance before detaching. Detaching a mounted volume can cause data corruption.

Snapshots

Snapshots capture a point-in-time copy of your entire virtual machine, including all disks and optionally the VM state (RAM).

Creating a Snapshot

  1. Navigate to your instance detail page
  2. Go to the Snapshots tab
  3. Click Create Snapshot
  4. Enter a name and optional description
  5. Click Create
PropertyDetails
ScopeFull VM — all disks included
VM stateRAM is captured if the instance is running
DowntimeNone — snapshots are created live
NameRequired, used to identify the snapshot
DescriptionOptional, for your reference

Rolling Back a Snapshot

Restore your instance to the exact state captured by the snapshot.

  1. Navigate to the instance → Snapshots tab
  2. Select the snapshot to restore
  3. Click Rollback
  4. Confirm the action

Rolling back a snapshot replaces the current state of all disks (and RAM if captured). Any changes made after the snapshot was taken will be lost. This action cannot be undone.

Deleting Snapshots

Remove snapshots you no longer need to free up storage and stop billing.

  1. Navigate to the instance → Snapshots tab
  2. Click Delete on the snapshot
  3. Confirm the deletion

Snapshot Use Cases

  • Before updates — Snapshot before applying OS patches, kernel upgrades, or application updates. Roll back instantly if something goes wrong.
  • Testing — Snapshot a clean environment, run tests, then roll back to the clean state.
  • Configuration changes — Snapshot before changing critical configs (nginx, database, firewall). One-click undo if the change breaks things.

Snapshots are not a replacement for backups. Snapshots are stored on the same infrastructure as the instance. For disaster recovery, use automated backups which are stored separately.

Backups

Backups create a compressed copy of your instance that is stored separately from the primary storage infrastructure. They provide disaster recovery protection that snapshots alone cannot.

Manual Backups

Create a backup of your instance on demand.

  1. Navigate to your instance detail page
  2. Go to the Backups tab
  3. Click Create Backup
  4. The backup job runs using vzdump with zstd compression
PropertyDetails
Formatzstd compressed
Toolvzdump
StorageSeparate backup storage
IncludesAll instance disks and configuration

Automated Backups

Enable automated backups to run on a schedule. Automated backups cost 20% of your instance's monthly price.

  1. Navigate to the instance → Backups tab
  2. Toggle Automated Backups to on
  3. Backups run automatically on the configured schedule
FeatureDetails
Cost20% of instance monthly price
ScheduleAutomatic
RetentionManaged automatically
Enable/disableToggle from instance backups tab

Restoring from a Backup

Restore your instance from any available backup.

  1. Navigate to the instance → Backups tab
  2. Select the backup to restore
  3. Click Restore
  4. Confirm the action

Restoring from a backup replaces the current state of your instance. All data written since the backup was created will be lost.

Deleting Backups

Remove old backups to free up storage.

  1. Navigate to the instance → Backups tab
  2. Click Delete on the backup
  3. Confirm the deletion

Storage Pricing

ItemRate
Block Storage (NVMe SSD)$0.087/GB/mo
Snapshots$0.065/GB/mo
Automated Backups20% of instance monthly cost
Manual BackupsIncluded with automated backups plan

Cost Examples

Storage Type50 GB100 GB500 GB1 TB
Block Storage$4.35/mo$8.70/mo$43.50/mo$87.00/mo
Snapshots$3.25/mo$6.50/mo$32.50/mo$65.00/mo

All storage is billed hourly with a monthly cap. Delete volumes, snapshots, or backups to stop billing immediately.

Storage Limits

LimitValue
Volumes per instance10
Max volume size10 TB
Min volume size10 GB
Volumes per account50
Snapshots per instance25

Best Practices

  1. Use snapshots before changes — Always snapshot before OS updates, config changes, or application upgrades.
  2. Enable automated backups for production — Snapshots are on the same storage; backups provide true disaster recovery.
  3. Use nofail in fstab — Prevent boot failures if a volume becomes unavailable.
  4. Monitor disk usage — Set up alerts before volumes fill up. Expand proactively.
  5. Clean up old snapshots — Snapshots consume storage and incur costs. Delete snapshots you no longer need.
  6. Start small, expand later — Volumes can only grow, not shrink. Start with a smaller size and expand as needed.

Next Steps

On this page