installation
Complete guide to deploying and managing a high-performance Uptick validator node with enterprise-grade reliability
System Requirements
Component
Minimum
Recommended
OS
Ubuntu 20.04
Ubuntu 22.04 LTS
CPU
4 Cores
8 Cores (AMD EPYC/Ryzen)
RAM
8GB
16GB DDR4
Storage
500GB SSD
1TB NVMe SSD (Gen4)
Network
10Mbps
100Mbps Dedicated
Step 1: Install Dependencies
sudo apt update && sudo apt upgrade -y
sudo apt install curl git wget jq make gcc tmux unzip build-essential lz4 -yStep 2: Install Go
ver="1.22.5"
wget "https://golang.org/dl/go$ver.linux-amd64.tar.gz"
sudo rm -rf /usr/local/go
sudo tar -C /usr/local -xzf "go$ver.linux-amd64.tar.gz"
rm "go$ver.linux-amd64.tar.gz"
echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> ~/.bash_profile
source ~/.bash_profile
go versionStep 3: Install Binary
Step 4: Initialize Node with Custom Port
Step 5: Configure Pruning (Save Disk Space)
Step 6: Download Genesis and Set Peers
Step 7: Create Service File
Step 8: Start Node
Validator Configuration
Create Wallet
⚠️ Securely backup your mnemonic phrase!
Create Validator
Check Sync Status
Last updated