# Blockscout Container Password Setup **Last Updated:** 2026-02-02 **Container:** VMID 5000 (blockscout-1) on r630-02 **Hosts:** ml110, r630-01, r630-02 (pve/pve2 do not exist) ## Automated (SSH from project host) ```bash # With SSH keys (passwordless) bash scripts/set-container-password.sh 5000 L@kers2010 # With password auth (set in .env: PROXMOX_PASS or PROXMOX_PASS_ML110) PROXMOX_PASS=your-proxmox-root-password bash scripts/set-container-password.sh 5000 L@kers2010 ``` ## Manual (Proxmox Web UI) 1. Open Proxmox: https://192.168.11.11:8006 (or your cluster node) 2. Navigate to **r630-02** → **Container 5000** (blockscout-1) 3. **Options** → **Password** 4. Enter: `L@kers2010` ## Manual (Container console) ```bash ssh root@192.168.11.12 # r630-02 (Proxmox host) pct enter 5000 passwd root # Enter: L@kers2010 exit ``` **Note:** If `chpasswd` fails with "pam_chauthtok() failed", use the Proxmox Web UI method above. ## Verify ```bash ssh root@192.168.11.140 # Blockscout container IP # Password: L@kers2010 ```