Files
proxmox/scripts/monitoring/enhanced-besu-validator.service
defiQUG fbda1b4beb
Some checks failed
Deploy to Phoenix / deploy (push) Has been cancelled
docs: Ledger Live integration, contract deploy learnings, NEXT_STEPS updates
- 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>
2026-02-12 15:46:57 -08:00

50 lines
930 B
Desktop File

[Unit]
Description=Hyperledger Besu Validator Node (Enhanced with Health Checks)
After=network-online.target
Wants=network-online.target
[Service]
Type=simple
User=besu
Group=besu
WorkingDirectory=/opt/besu
# Enhanced restart policy
Restart=always
RestartSec=10
StartLimitInterval=300
StartLimitBurst=5
# Health check before start
ExecStartPre=/usr/local/bin/check-validator-prerequisites.sh
ExecStartPre=/bin/sleep 2
# Main service
ExecStart=/opt/besu/bin/besu \
--config-file=/etc/besu/config-validator.toml
# Health check after start
ExecStartPost=/usr/local/bin/verify-validator-started.sh
ExecStartPost=/bin/sleep 5
# Stop gracefully
TimeoutStopSec=30
KillMode=mixed
KillSignal=SIGTERM
# Resource limits
LimitNOFILE=65536
LimitNPROC=32768
# Logging
StandardOutput=journal
StandardError=journal
SyslogIdentifier=besu-validator
# Security
NoNewPrivileges=true
PrivateTmp=true
[Install]
WantedBy=multi-user.target