How to update your Windows/MacOS node using the Exit Node Launcher
For every Exit Node Launcher user out there, you don’t need to upgrade your node manually. Launcher update logic checks for new node upgrades, and enables the software to upgrade automatically in a matter of minutes.
Note! Please make sure to choose the "Upgrade automatically" option in your Mysterium node launcher to avoid the need for manual software updates.
How to update your Android node
Updating your Android node (MystNodes app on your mobile device) is a straightforward process, similar to downloading and installing the app like the first time.
To update, follow these steps:
Download the latest version of MystNodes_provider.apk
Open the downloaded .apk file.
A prompt will appear asking you if you wish to update the application. Click “Update” on that prompt.
Wait for a few moments for the app to update.
That’s it! You have updated your Android node to the latest version.
You can also find the latest version of the application on mystnodes.com
How to update your Linux node
To update your Linux node, run:
sudo apt update; sudo apt install myst
How to update your Raspberry Pi node
SSH into your Raspberry Pi using the following command:
ssh myst@ip-of-your-raspberry
The default password is mystberry.
Then to update your RPI, run:
sudo apt update; sudo apt install myst
How to update your Docker node
In order to update your Docker node, run the following commands.
Note 1: Make sure that you have your data in the persistent storage like myst-data.
Note 2: You can backup your keys before trying to update node version FAQ.
Pull the latest node image.
docker pull mysteriumnetwork/myst
Delete the container that is already being used for running node:
docker rm -f myst
Follow the running a docker node guide to start a new container.