Supported Operating Systems
Raspbian 9 / 10
Debian 9 / 10
Ubuntu (any recent version)
Installation
To install the Mysterium Node, run the following command:
sudo -E bash -c "$(curl -s https://raw.githubusercontent.com/mysteriumnetwork/node/master/install.sh)"
It installs the latest stable node release.
Verifying Installation
After installation is complete, check if the service is running by using:
sudo systemctl status mysterium-node.service
Viewing Logs
To view the daemon logs:
sudo journalctl -u mysterium-node.service
To get a real-time view of logs:
sudo journalctl -fu mysterium-node.service
Tips
Ensure
curl
is installed before running the script. You can install it with:
sudo apt-get install curl