- Joined
- Dec 23, 2022
- Messages
- 678
- Reaction score
- 0
This is a quick tutorial on how to update your v 5.5.0 VPS wallet to c 5.5.1
OS: Ubuntu 18.04 and 20.04
This applies to masternode holders (not desktop wallets)
===========
1) ssh into your vps
2) switch over to admin rights
3) now you need to stop maria wallet running
3.1) if you have a server with many masternodes:
and double-check that none are running with the command (please give it a minute for the system to complete the job):
3.2) if you have 1 wallet running only (in the case of a vps):
start with finding the active process:
now you will see the number of the active process > look for the letters 'Ssl' < that is the row you need
.. and use your number in this command:
screenshot:
and double-check that none are running with the command:
# good job!
4) go to your local bin, usually the directory is 'usr/local/bin':
5) see the files
6) remove the maria files from there (should be 3):
screenshot (note: on your screen there shouldn't be any references to 'lats'):
7) download the v 5.5.1 wallet to your vps:
8) unzip it
9) now you can delete the downloaded zip file:
10) make the files executable:
or, the lazy way (shortcut):
here is a screenshot of how these 3 files should look (note: the date for 5.5.1 files = April 10):
# this is it > the wallet has been updated. Congratulations!
11) start your MN your usual way
=========================
Did this help? Any questions?
OS: Ubuntu 18.04 and 20.04
This applies to masternode holders (not desktop wallets)
===========
1) ssh into your vps
2) switch over to admin rights
Code:
sudo su
3) now you need to stop maria wallet running
3.1) if you have a server with many masternodes:
Code:
killall mariad
and double-check that none are running with the command (please give it a minute for the system to complete the job):
Code:
ps ax | grep maria
3.2) if you have 1 wallet running only (in the case of a vps):
start with finding the active process:
Code:
ps ax | grep maria
now you will see the number of the active process > look for the letters 'Ssl' < that is the row you need
.. and use your number in this command:
Code:
kill -9 yournumber
screenshot:
and double-check that none are running with the command:
Code:
ps ax | grep maria
# good job!
4) go to your local bin, usually the directory is 'usr/local/bin':
Code:
cd /usr/local/bin
5) see the files
Code:
ls -al
6) remove the maria files from there (should be 3):
Code:
rm maria-cli mariad maria-tx
screenshot (note: on your screen there shouldn't be any references to 'lats'):
7) download the v 5.5.1 wallet to your vps:
Code:
wget https://github.com/hostmaria/mariacoin/releases/download/v5.5.1/maria-5.5.1-ubuntu18-daemon.zip
8) unzip it
Code:
unzip maria-5.5.1-ubuntu18-daemon.zip
9) now you can delete the downloaded zip file:
Code:
rm maria-5.5.1-ubuntu18-daemon.zip
10) make the files executable:
Code:
chmod +x maria-cli mariad maria-tx
or, the lazy way (shortcut):
Code:
chmod +x mar*
here is a screenshot of how these 3 files should look (note: the date for 5.5.1 files = April 10):
# this is it > the wallet has been updated. Congratulations!
11) start your MN your usual way
=========================
Did this help? Any questions?