Skip to main content

Updating your Mysterium Node (DEB / Ubuntu / Debian)

If you installed your node using a .deb package, follow these steps to update it to the latest version.

A
Written by Adine
Updated today

1. Download the latest package

Download the latest release from Mysterium Node repository

Or use:

wget https://github.com/MysteriumNetwork/node/releases/latest/download/myst_linux_amd64.deb

Or:

curl -LO https://github.com/MysteriumNetwork/node/releases/latest/download/myst_linux_amd64.deb

πŸ’‘ Replace the filename if you are using a different architecture.


2. Install the update

Run:

sudo dpkg -i myst_linux_amd64.deb

This will upgrade your existing installation.


3. Fix dependencies (if needed)

sudo apt-get install -f

4. Restart the service

sudo systemctl restart mysterium-node

5. Verify the update

Check status:

sudo systemctl status mysterium-node

Notes

  1. Your node identity and configuration are preserved during updates

  2. No need to uninstall before upgrading

  3. The node service will briefly restart during the update


πŸ”— Related

Did this answer your question?