Troubleshooting Storage

Storage Not Available

Check 1: Storage Status

# List storage
pvesm status
 
# Test storage
pvesm scan-lvm /dev/sda

Check 2: Disk Health

# Check SMART
smartctl -a /dev/sda
 
# Test disk
badblocks -schu /dev/sda

Check 3: LVM Issues

# Show LVM
pvscan
vgscan
 
# Fix LVM
vgchange -ay

Low Disk Space

# Find large files
du -sh /var/lib/vz/*
 
# Clean old backups
rm -rf /var/lib/vz/dump/*

See Also

Back to Proxmox VE