π Installation
Republic Node Installation Guide (Custom Setup)
1. Install Required Dependencies
sudo apt update && sudo apt upgrade -y
sudo apt install curl tar wget clang pkg-config libssl-dev jq build-essential bsdmainutils git make ncdu gcc chrony liblz4-tool -y2. Install Go
GO_VERSION="1.22.5"
wget "https://golang.org/dl/go${GO_VERSION}.linux-amd64.tar.gz"
sudo rm -rf /usr/local/go
sudo tar -C /usr/local -xzf "go${GO_VERSION}.linux-amd64.tar.gz"
rm "go${GO_VERSION}.linux-amd64.tar.gz"
echo 'export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin' >> ~/.bash_profile
source ~/.bash_profile
go version3. Install Republic Binary
4. Initialize the Node
5. Download Genesis and Addrbook
Genesis File
Addrbook File
6. Custom Port Configuration
7. Configure Peers and Gas Settings
8. Configure Pruning (Disk Optimization)
9. Disable Indexer
10. Create System Service
11. Start the Node
Last updated