Galactica
Galactica node guides
Galactica Node Installation Guide
System Requirements
Step 1: Install Dependencies
bashCopyEditsudo apt update && sudo apt upgrade -y
sudo apt install curl git wget htop tmux build-essential jq make lz4 gcc unzip -yStep 2: Install Go (if not installed)
bashCopyEditcd $HOME
VER="1.21.3"
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:~/go/bin" >> ~/.bash_profile
source $HOME/.bash_profile
mkdir -p ~/go/binStep 3: Set Environment Variables
Step 4: Download and Install the Galactica Binary
Step 5: Configure and Initialize the Node
Step 6: Download Genesis and Addrbook
Step 7: Set Peers and Seeds
Step 8: Configure Custom Ports
Step 9: Configure Pruning and Security Settings
Step 10: Create a Systemd Service File
Step 11: Reset and Download Latest Snapshot
Step 12: Start and Enable the Node
Wallet Creation & Node Monitoring
Create a Wallet
Check Sync Status
Create a Validator
Security & Firewall Configuration
Uninstall Node
Last updated