Skip to main content

Installing a Mysterium Node Using a Prebuilt DEB Package

Andzej Korkuz avatar
Written by Andzej Korkuz
Updated over a week ago

Prebuilt DEB packages are available on the Mysterium Node Releases page.

Installation Steps:

  1. Download the myst_linux_amd64.deb package (or another available package depending on your OS architecture).

  2. Install the downloaded package:

sudo dpkg -i myst_linux_amd64.deb
sudo apt-get -f install

After the installation is complete, the mysterium-node service will start automatically.


Verifying the Service

You can check if the service is running correctly by using:

sudo systemctl status mysterium-node

Changing Service Configuration

If you want to change configuration parameters:

  1. Edit the configuration file:

    /etc/default/mysterium-node
  2. Reload and restart the service:

    sudo systemctl daemon-reload
    sudo systemctl restart mysterium-node
Did this answer your question?