- 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.
30 lines
1.0 KiB
Bash
Executable File
30 lines
1.0 KiB
Bash
Executable File
#!/bin/bash
|
|
# Quick check of container services on r630-02
|
|
|
|
PROXMOX_HOST="${PROXMOX_HOST:-192.168.11.12}"
|
|
|
|
echo "=== Container Status Summary ==="
|
|
ssh -o StrictHostKeyChecking=no root@"$PROXMOX_HOST" "pct list" 2>&1
|
|
|
|
echo ""
|
|
echo "=== Key Services ==="
|
|
|
|
# Blockscout
|
|
echo "VMID 5000 (Blockscout):"
|
|
ssh -o StrictHostKeyChecking=no root@"$PROXMOX_HOST" "pct exec 5000 -- systemctl is-active blockscout nginx docker 2>&1 | grep -v 'inactive'"
|
|
|
|
# Cloudflare
|
|
echo "VMID 102 (Cloudflare):"
|
|
ssh -o StrictHostKeyChecking=no root@"$PROXMOX_HOST" "pct exec 102 -- systemctl is-active cloudflared 2>&1"
|
|
|
|
# Gitea
|
|
echo "VMID 104 (Gitea):"
|
|
ssh -o StrictHostKeyChecking=no root@"$PROXMOX_HOST" "pct exec 104 -- systemctl is-active gitea 2>&1"
|
|
|
|
# Firefly nodes
|
|
echo "VMID 6200 (Firefly-1):"
|
|
ssh -o StrictHostKeyChecking=no root@"$PROXMOX_HOST" "pct exec 6200 -- docker ps --format '{{.Names}}' 2>&1 | head -3"
|
|
|
|
echo "VMID 6201 (Firefly-ali-1):"
|
|
ssh -o StrictHostKeyChecking=no root@"$PROXMOX_HOST" "pct exec 6201 -- docker ps --format '{{.Names}}' 2>&1 | head -3"
|