Most convenient way requiring least configuration is to run a node using Docker. All node versions are available through docker hub:
https://hub.docker.com/r/mysteriumnetwork/myst/
sudo docker run --cap-add NET_ADMIN --net host --name myst -d mysteriumnetwork/myst service --agreed-terms-and-conditionsNote: to run server, you will have to accept terms & conditions by adding '--agreed-terms-and-conditions' command line option.
Note 2: it's mandatory to run docker container with --net host to correctly detect VPN service ip which needs to be published to clients, assuming that host on which node is running has external interface with public ip
sudo docker logs -f mystNote: you need to replace {version} with specific version number from releases
apt-get update && apt-get install -y curl
curl -s https://swupdate.openvpn.net/repos/repo-public.gpg | apt-key add && echo "deb http://build.openvpn.net/debian/openvpn/stable xenial main" > /etc/apt/sources.list.d/openvpn-aptrepo.list && rm -rf /var/cache/apt/* /var/lib/apt/lists/*
apt-get updatewget https://github.com/mysteriumnetwork/node/releases/download/{VERSION}/myst_linux_amd64.deb
sudo dpkg --install --force-depends myst_linux_amd64.deb
sudo apt-get install -y --fix-brokensudo service mysterium-node start
sudo service mysterium-node statussudo tail -f /var/log/mysterium-node/*sudo myst --data-dir=/var/lib/mysterium-node --config-dir=/etc/mysterium-node --runtime-dir=/tmp --identity=0x123456..tar -xvzf myst_{OS}_{ARCH}.tar.gzcd myst_{OS}_{ARCH}
sudo ./mystNote: to run server, you will have to add
servicesubcommand and accept terms & conditions by adding '--agreed-terms-and-conditions' command line option.