Files
proxmox/rpc-translator-138/CHECK_VMID_107.md
defiQUG cb47cce074 Complete markdown files cleanup and organization
- 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.
2026-01-06 01:46:25 -08:00

1.8 KiB

Check VMID 107 - Diagnostic Commands

Issue: Systemd service file exists but "Unit web3signer.service not found"

Run Diagnostic Script

cd /home/intlc/projects/proxmox/rpc-translator-138
./scripts/check-vmid-107.sh

Manual Diagnostic Commands

1. Check Service File

# Check if file exists
ssh root@192.168.11.11 "pct exec 107 -- ls -la /etc/systemd/system/web3signer.service"

# View contents
ssh root@192.168.11.11 "pct exec 107 -- cat /etc/systemd/system/web3signer.service"

2. Reload Systemd and Enable Service

# Reload systemd daemon
ssh root@192.168.11.11 "pct exec 107 -- systemctl daemon-reload"

# Enable the service
ssh root@192.168.11.11 "pct exec 107 -- systemctl enable web3signer.service"

# Check if it's now registered
ssh root@192.168.11.11 "pct exec 107 -- systemctl list-unit-files | grep web3signer"

3. Start Service

# Start the service
ssh root@192.168.11.11 "pct exec 107 -- systemctl start web3signer.service"

# Check status
ssh root@192.168.11.11 "pct exec 107 -- systemctl status web3signer.service --no-pager | head -20"

4. Verify Keys Loaded

# Check API
curl http://192.168.11.111:9000/api/v1/eth1/publicKeys

# Check logs
ssh root@192.168.11.11 "pct exec 107 -- journalctl -u web3signer.service -n 30 --no-pager"

All-in-One Fix

# Complete fix: reload, enable, start
ssh root@192.168.11.11 "pct exec 107 -- bash -c 'systemctl daemon-reload && systemctl enable web3signer.service && systemctl restart web3signer.service && sleep 5 && systemctl status web3signer.service --no-pager | head -15'"

# Verify
curl http://192.168.11.111:9000/api/v1/eth1/publicKeys

The issue: Systemd needs daemon-reload and enable before it can find and start the service.