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>
41 lines
1.0 KiB
Markdown
41 lines
1.0 KiB
Markdown
# 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
|
|
```
|