Ethereum Merge Guide - Lighthouse/Geth
  • Ethereum Merge Guide - Lighthouse/Geth
  • Update Geth
  • Update Lighthouse
  • Fix Geth
  • Terminal Commands
  • How Much Is Enough?
Powered by GitBook
On this page

Update Lighthouse

PreviousUpdate GethNextFix Geth

Last updated 2 years ago

You can verify the most recent Lighthouse release .

This guide demonstrates updating to v3.2.1 and is current as of Nov 6, 2022

1) Change directory to the Home folder:

cd ~

2) Download Lighthouse software:

curl -LO https://github.com/sigp/lighthouse/releases/download/v3.2.1/lighthouse-v3.2.1-x86_64-unknown-linux-gnu.tar.gz

3) Stop Lighthouse services:

sudo systemctl stop lighthousevalidator && sudo systemctl stop lighthousebeacon

4) Extract, Copy, and Clean up:

tar xvf lighthouse-v3.2.1-x86_64-unknown-linux-gnu.tar.gz
sudo cp lighthouse /usr/local/bin
rm lighthouse-lighthouse-v3.2.1-x86_64-unknown-linux-gnu.tar.gz
rm lighthouse

5) Start Lighthouse services:

sudo systemctl start lighthousebeacon && sudo systemctl start lighthousevalidator

Lighthouse is now running the most current version

here