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>
50 lines
930 B
Desktop File
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
|