5.2 KiB
5.2 KiB
Deployment Status Summary
✅ Completed Tasks
1. Key Generation ✓
- 5 Validator keys generated and verified
- 4 Sentry keys generated
- 3 RPC keys generated
- All keys validated (0 errors, 0 warnings)
- Keys synced to ml110:
/opt/smom-dbis-138/keys/
2. Configuration Files ✓
static-nodes.jsonupdated with new enode URLs (5 validators)genesis.jsonready (preserved with pre-allocated balances)- All config files synced to ml110
3. Scripts and Documentation ✓
- Key generation scripts created
- Verification scripts created
- Deployment checklist created
- Quick reference guide created
⚠️ Current Status
Containers: Not Deployed Yet
The Besu containers (VMIDs 1000-1004, 1500-1503, 2500-2502) do not exist yet. The deployment script deploy-besu-nodes.sh appears to hang during container creation (took 1 hour).
📋 What's Ready for Deployment
Files on ml110 (192.168.11.10)
Keys Location:
/opt/smom-dbis-138/keys/
├── validators/
│ ├── validator-1/ (key.priv, key.pem, pubkey.pem, address.txt)
│ ├── validator-2/
│ ├── validator-3/
│ ├── validator-4/
│ └── validator-5/
├── sentries/
│ ├── sentry-1/ (nodekey, nodekey.pub)
│ ├── sentry-2/
│ ├── sentry-3/
│ └── sentry-4/
└── rpc/
├── rpc-1/ (nodekey, nodekey.pub)
├── rpc-2/
└── rpc-3/
Configuration Files:
/opt/smom-dbis-138/config/
├── genesis.json
├── static-nodes.json (updated with new enode URLs)
├── permissions-nodes.toml
├── permissions-accounts.toml
├── config-validator.toml
├── config-sentry.toml
├── config-rpc-core.toml
├── config-rpc-perm.toml
└── config-rpc-public.toml
Deployment Scripts:
/opt/smom-dbis-138-proxmox/
├── scripts/deployment/deploy-besu-nodes.sh
├── scripts/copy-besu-config.sh
├── scripts/fix-besu-services.sh
└── scripts/network/bootstrap-network.sh
🚀 Next Steps (After Container Deployment)
Once containers are deployed, run these commands in order:
Step 1: Copy Configuration and Keys
cd /opt/smom-dbis-138-proxmox
./scripts/copy-besu-config.sh ../smom-dbis-138
Step 2: Copy static-nodes.json
# Copy to all containers
for vmid in 1000 1001 1002 1003 1004 1500 1501 1502 1503 2500 2501 2502; do
pct push $vmid ../smom-dbis-138/config/static-nodes.json /etc/besu/static-nodes.json
done
Step 3: Start Besu Services
# Validators
for vmid in 1000 1001 1002 1003 1004; do
pct exec $vmid -- systemctl enable besu-validator.service
pct exec $vmid -- systemctl start besu-validator.service
done
# Sentries
for vmid in 1500 1501 1502 1503; do
pct exec $vmid -- systemctl enable besu-sentry.service
pct exec $vmid -- systemctl start besu-sentry.service
done
# RPC
for vmid in 2500 2501 2502; do
pct exec $vmid -- systemctl enable besu-rpc.service
pct exec $vmid -- systemctl start besu-rpc.service
done
Step 4: Verify Deployment
cd /opt/smom-dbis-138-proxmox
./scripts/validation/validate-deployment-comprehensive.sh
🔧 Troubleshooting Container Deployment
If deploy-besu-nodes.sh hangs, try:
-
Check prerequisites:
# Verify OS template exists pveam list | grep ubuntu-22.04 # Check storage pvesm status -
Deploy containers manually (one at a time):
# Example: Create validator 1 pct create 1000 local:vztmpl/ubuntu-22.04-standard_22.04-1_amd64.tar.zst \ --storage local-lvm \ --hostname validator-1 \ --memory 4096 \ --cores 2 \ --rootfs local-lvm:100 \ --net0 bridge=vmbr0,name=eth0,ip=192.168.11.100/24,gw=192.168.11.1 \ --unprivileged 1 \ --start -
Check for errors:
# View deployment logs journalctl -u pve-container -f -
Deploy in smaller batches:
- Deploy validators first (1000-1004)
- Then sentries (1500-1503)
- Finally RPC nodes (2500-2502)
📊 Validator Information Reference
| Validator | Address | VMID | IP Address |
|---|---|---|---|
| validator-1 | 43ea6615474ac886c78182af1acbbf84346f2e9c |
1000 | 192.168.11.100 |
| validator-2 | 05db2d6b5584285cc03cd33017c0f8da32652583 |
1001 | 192.168.11.101 |
| validator-3 | 23e1139cc8359872f8f4ef0d8f01c20355ac5f4b |
1002 | 192.168.11.102 |
| validator-4 | 231a55a8ae9946b5dd2dc81c4c07522df42fd3ed |
1003 | 192.168.11.103 |
| validator-5 | c0af7f9251dc57cfb84c192c1bab20f5e312acb3 |
1004 | 192.168.11.104 |
📝 Summary
Ready:
- ✅ All keys generated and verified
- ✅ Configuration files prepared
- ✅ Files synced to ml110
- ✅ Scripts ready for use
Pending:
- ⚠️ Container deployment (script hangs - may need manual deployment)
- ⚠️ Configuration copy (waiting for containers)
- ⚠️ Service startup (waiting for containers)
Recommendation: Deploy containers manually or in smaller batches to avoid hanging. Once containers are running, all configuration steps are automated and ready to execute.
Last Updated: 2025-12-20
Status: Keys and configs ready, containers need deployment