Skip to main content

Update

Update the full node

Stop the node

sudo systemctl stop celestia-full

Upgrade to the latest version

cd celestia-node
git fetch
git checkout v0.9.1
make build
sudo make install
note

In command version can be changed.

Update config

celestia full config-update --p2p.network blockspacerace

Start the node

sudo systemctl enable celestia-full
sudo systemctl start celestia-full

Check logs

sudo journalctl -u celestia-full.service -f

full-9

Update the light node

Stop the node

sudo systemctl stop celestia-lightd

Upgrade to latest version

cd celestia-node
git fetch
git checkout v0.9.1
make build
sudo make install
note

In command version can be changed.

Update config

celestia light config-update --p2p.network blockspacerace

Start the node

sudo systemctl enable celestia-lightd
sudo systemctl start celestia-lightd

Check logs

sudo journalctl -u celestia-lightd.service -f -o cat

light-9