Some checks failed
Deploy to Phoenix / deploy (push) Has been cancelled
- ADD_CHAIN138_TO_LEDGER_LIVE: Ledger form done; public code review repo bis-innovations/LedgerLive; init/push commands - CONTRACT_DEPLOYMENT_RUNBOOK: Chain 138 gas price 1 gwei, 36-addr check, TransactionMirror workaround - CONTRACT_*: AddressMapper, MirrorManager deployed 2026-02-12; 36-address on-chain check - NEXT_STEPS_FOR_YOU: Ledger done; steps completable now (no LAN); run-completable-tasks-from-anywhere - MASTER_INDEX, OPERATOR_OPTIONAL, SMART_CONTRACTS_INVENTORY_SIMPLE: updates - LEDGER_BLOCKCHAIN_INTEGRATION_COMPLETE: bis-innovations/LedgerLive reference Co-authored-by: Cursor <cursoragent@cursor.com>
3.0 KiB
3.0 KiB
Pre-start Hook Error Investigation
Date: January 19, 2026
Issue: All containers failing with "lxc.hook.pre-start" error (exit code 32)
Problem
All 33 containers on r630-01 (192.168.11.11) are failing to start with:
run_buffer: 571 Script exited with status 32
lxc_init: 845 Failed to run lxc.hook.pre-start for container "XXXX"
__lxc_start: 2047 Failed to initialize container "XXXX"
startup for container 'XXXX' failed
Affected Containers
All containers are affected:
- CT 3000-3003, 3500-3501, 5200, 6000, 6400
- CT 10000-10092 (Order services)
- CT 10100-10151 (DBIS services)
- CT 10200-10230 (Monitoring services)
- CT 10232
Root Cause Analysis
Hook Script
- Location:
/usr/share/lxc/hooks/lxc-pve-prestart-hook - Type: Perl script (part of Proxmox VE)
- Exit Code: 32 (specific error code)
Possible Causes
-
Proxmox Cluster Issue
- Hook may be trying to communicate with cluster
- Cluster services may be down or misconfigured
-
Storage/Configuration Issue
- Hook validates storage configuration
- May be failing due to storage pool issues
-
Permission Issue
- Hook may need specific permissions
- File system permissions may be incorrect
-
Missing Dependencies
- Perl modules may be missing
- Proxmox packages may be incomplete
-
Container State Issue
- Containers may be in inconsistent state
- Previous operations may have left containers in bad state
Investigation Steps Taken
- ✅ Checked container configs - all appear correct
- ✅ Verified storage volumes exist
- ✅ Checked hook script exists and is executable
- ⏳ Checking Proxmox services status
- ⏳ Checking cluster status
- ⏳ Checking hook warnings/errors
Next Steps
-
Check Proxmox Services:
systemctl status pve-cluster pvedaemon pveproxy -
Check Cluster Status:
pvecm status -
Check Hook Warnings:
cat /run/pve/ct-XXXX.warnings -
Try Manual Hook Execution:
perl /usr/share/lxc/hooks/lxc-pve-prestart-hook lxc 3000 start -
Check Proxmox Logs:
journalctl -u pve-cluster -n 50 journalctl -u pvedaemon -n 50 -
Check Container Logs:
tail -50 /var/log/pve/lxc/3000.log
Potential Solutions
Solution 1: Restart Proxmox Services
systemctl restart pve-cluster
systemctl restart pvedaemon
systemctl restart pveproxy
Solution 2: Fix Cluster Issues
If cluster is misconfigured:
pvecm status
# Fix cluster configuration if needed
Solution 3: Reinstall/Update Proxmox Packages
If packages are corrupted:
apt update
apt install --reinstall pve-container
Solution 4: Bypass Hook (Temporary)
If hook is corrupted and containers need to start:
- This is not recommended but may be necessary for emergency access
- Would require modifying LXC configuration
Status
Current: Investigating system-level cause
Next: Check Proxmox services and cluster status