Update Lighthouse

You can verify the most recent Lighthouse release here.

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

Last updated