- Organized 252 files across project - Root directory: 187 → 2 files (98.9% reduction) - Moved configuration guides to docs/04-configuration/ - Moved troubleshooting guides to docs/09-troubleshooting/ - Moved quick start guides to docs/01-getting-started/ - Moved reports to reports/ directory - Archived temporary files - Generated comprehensive reports and documentation - Created maintenance scripts and guides All files organized according to established standards.
1.7 KiB
1.7 KiB
Migration Quick Reference
Quick Fix for Migration Failures
Step 1: Run Diagnostic and Fix (Recommended)
cd /home/intlc/projects/proxmox
./scripts/diagnose-and-fix-migration-storage.sh
This single command will:
- ✅ Check all nodes (ml110, pve, pve2)
- ✅ Find container locations
- ✅ Fix storage issues
- ✅ Migrate containers 1504, 2503, 2504, 6201 to pve
Step 2: If Step 1 Fails, Fix Storage First
./scripts/fix-migration-storage.sh
Then retry Step 1.
Manual Migration (If Scripts Fail)
# Connect to source node
ssh root@192.168.11.10
# Password: L@kers2010
# Stop and migrate each container
for vmid in 1504 2503 2504 6201; do
pct stop $vmid
pct migrate $vmid pve --restart
done
Verify Migration
# Check container locations
ssh root@192.168.11.10 "for vmid in 1504 2503 2504 6201; do echo -n \"\$vmid: \"; pvesh get /nodes/pve/lxc/\$vmid/status/current 2>/dev/null | jq -r '.status' && echo \" (pve)\" || echo \"not on pve\"; done"
Container Details
| VMID | Hostname | Target Node |
|---|---|---|
| 1504 | besu-sentry-ali | pve |
| 2503 | besu-rpc-ali-0x8a | pve |
| 2504 | besu-rpc-ali-0x1 | pve |
| 6201 | firefly-ali-1 | pve |
Common Issues
"migration aborted"
- Cause: Storage incompatibility
- Fix: Run
./scripts/fix-migration-storage.shfirst
"storage not found"
- Cause: Target storage not configured
- Fix: Ensure
thin1storage exists on target node
"volume group not found"
- Cause: VG mismatch between source and target
- Fix: Use
localstorage instead:pct migrate <VMID> pve --storage local
Full Documentation
See docs/MIGRATION_STORAGE_FIX.md for complete details.