How to Run a Fiotech Validator Node on Ubuntu 24.04
1. Hardware Requirements
- CPU: 8 cores / 16 threads (3.2GHz+)
- RAM: 32 GB DDR4/DDR5 ECC
- Disk: 2 TB NVMe SSD (minimum 3,000 IOPS)
- Network: 1 Gbps symmetrical unmetered
2. Systemd Service Setup
[Unit]
Description=Fiotech Validator Node
After=network.target
[Service]
User=fiotech
ExecStart=/usr/local/bin/fiotech-node --validator --datadir /var/lib/fiotech --http --http.api eth,net,web3,fio
Restart=always
RestartSec=3
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
Enable and start with:
sudo systemctl enable --now fiotech-node
sudo journalctl -u fiotech-node -f
