Lighthouse
Installing and configuring the Lighthouse Beacon Node.
Lighthouse
1. Download & Install
# Create a folder for the binary
sudo mkdir -p /usr/local/lib/lighthouse
# Download the latest Linux release (Check https://github.com/sigp/lighthouse/releases)
# Example for v5.3.0:
sudo wget https://github.com/sigp/lighthouse/releases/download/v5.3.0/lighthouse-v5.3.0-x86_64-unknown-linux-gnu.tar.gz -O lighthouse.tar.gz
# Extract the archive
sudo tar -xvzf lighthouse.tar.gz -C /usr/local/lib/lighthouse
# Cleanup
rm lighthouse.tar.gz2. Configure Systemd Service
3. Start the Service
4. Verify Status
Last updated