Masternode Update Guide - friendshipCoin/friendshipcoin-core GitHub Wiki

Upgrading your masternode to the latest version of FriendshipCoin

Ubuntu VPS Masternode / Windows Cold Wallet

Log in to correct user

Firstly, log in to your VPS user you used when setting up the masternode. e.g. if it was the user masternode and you're logged in as root

$ su - masternode

Stop the masternode

Then, stop your current running node

friendshipcoind stop

Download the new binary and configure

wget https://github.com/friendshipCoin/friendshipcoin-core/releases/download/0.1.0/friendshipcoin-0.1.0-ubuntu.tar.gz
tar -zxvf friendshipcoin-0.1.0-ubuntu.tar.gz
cd friendshipcoin-0.1.0
sudo cp -a friendshipcoind /usr/local/bin/
sudo cp -a friendshipcoin-cli /usr/local/bin
sudo chmod 755 /usr/local/bin/friendshipcoind
sudo chmod 755 /usr/local/bin/friendshipcoin-cli

Restart the node

On your VPS, start the new Daemon

friendshipcoind

Confirm that it's running using

friendshipcoin-cli getinfo

On your cold wallet, restart the node you upgraded

friendshipcoin-cli masternode start-alias <masternode-alias>

Or, if you've upgraded multiple

friendshipcoin-cli masternode start-all

Verify that its working

Then check your masternodes on the VPS using

friendshipcoin-cli masternode debug

You should get the response:

masternode started remotely

If this doesn't happen, don't panic. This usually means the node is still syncing with the network.

Wait a couple of minutes and try to start again from your cold wallet.

Ubuntu Masternode

Log in to correct user

Firstly, log in to your VPS user you used when setting up the masternode. e.g. if it was the user masternode and you're logged in as root

$ su - masternode

Stop the masternode

Then, stop your current running node

friendshipcoind stop

Download the new binary and configure

wget https://github.com/friendshipCoin/friendshipcoin-core/releases/download/0.1.0/friendshipcoin-0.1.0-ubuntu.tar.gz
tar -zxvf friendshipcoin-0.1.0-ubuntu.tar.gz
cd friendshipcoin-0.1.0
sudo cp -a friendshipcoind /usr/local/bin/
sudo cp -a friendshipcoin-cli /usr/local/bin
sudo chmod 755 /usr/local/bin/friendshipcoind
sudo chmod 755 /usr/local/bin/friendshipcoin-cli

Restart the node

On your VPS, start the new Daemon

friendshipcoind

Confirm that it's running using

friendshipcoin-cli getinfo

Then restart the masternode

friendshipcoin-cli masternode start

Verify that its working

friendshipcoind masternode status

Status line should read 1.

If this doesn't happen, don't panic. This usually means the node is still syncing with the network.

Wait a couple of minutes and try to start again.

Windows Masternode