Files
proxmox/rpc-translator-138/docs/archive/QUICK_FIX_PROXMOX.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.6 KiB

Quick Fix: Proxmox Host Connection

Problem: ml110 hostname not resolving

Solution: Use the Proxmox host IP address directly

Proxmox Host IP Mappings

  • 192.168.11.10 = ml110
  • 192.168.11.11 = r630-01 (where containers are deployed)
  • 192.168.11.12 = r630-02

Since the containers (VMIDs 106, 107, 108) are on r630-01, use 192.168.11.11

Quick Fix Commands

Use 192.168.11.11 (r630-01) since that's where the containers are:

# Step 2: Copy keys
scp /tmp/web3signer-keys/keystore-*.json root@192.168.11.11:/tmp/web3signer-keys/

# Step 3: Load keys
ssh root@192.168.11.11 'bash -s' < /home/intlc/projects/proxmox/rpc-translator-138/scripts/load-keys-complete.sh

Or Add to /etc/hosts

# Add all Proxmox hosts to /etc/hosts
cat <<EOF | sudo tee -a /etc/hosts
192.168.11.10 ml110
192.168.11.11 r630-01
192.168.11.12 r630-02
EOF

# Then use r630-01 (where containers are)
scp /tmp/web3signer-keys/keystore-*.json root@r630-01:/tmp/web3signer-keys/
ssh root@r630-01 'bash -s' < /home/intlc/projects/proxmox/rpc-translator-138/scripts/load-keys-complete.sh

Test Connection First

# Test SSH connection to r630-01 (where containers are)
ssh root@192.168.11.11 "echo 'Connected successfully'"

# If that works, proceed with key copying

Quick Commands (Use r630-01)

Since containers are on r630-01 (192.168.11.11):

# Copy keys
scp /tmp/web3signer-keys/keystore-*.json root@192.168.11.11:/tmp/web3signer-keys/

# Load keys
ssh root@192.168.11.11 'bash -s' < /home/intlc/projects/proxmox/rpc-translator-138/scripts/load-keys-complete.sh