- 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.
1.5 KiB
1.5 KiB
Set Container Root Password
VMID: 5000
Password: L@kers2010
Methods to Set Password
Method 1: Via Proxmox Web UI (Recommended)
- Log into Proxmox web interface
- Navigate to Container 5000 (blockscout-1)
- Go to Options → Password
- Enter password:
L@kers2010 - Click OK
Method 2: Via Container Console
# SSH to Proxmox host
ssh root@192.168.11.10
# Enter container console (if on pve2)
ssh pve2
pct enter 5000
# Set password
passwd root
# Enter: L@kers2010 (twice)
Method 3: Via chpasswd (Command Line)
If you can access the container directly:
# SSH to Proxmox host
ssh root@192.168.11.10
# Execute chpasswd in container
pct exec 5000 -- bash -c 'echo "root:L@kers2010" | chpasswd'
# Or if container is on pve2
ssh pve2
pct exec 5000 -- bash -c 'echo "root:L@kers2010" | chpasswd'
Method 4: Via Proxmox API
ssh root@192.168.11.10
pvesh create /nodes/pve2/lxc/5000/exec \
--command 'bash' \
--arg '-c' \
--arg 'echo root:L@kers2010 | chpasswd'
Verification
After setting the password, verify by attempting to login:
# Once container has IP 192.168.11.140
ssh root@192.168.11.140
# Password: L@kers2010
Notes
- Container is on node: pve2
- Container hostname: blockscout-1
- Container IP: 192.168.11.140 (after static IP configuration applied)
- Current status: Password needs to be set manually via Proxmox web UI or container console