Skip to content

Commit a82c886

Browse files
committed
Update docs
1 parent 4e63c41 commit a82c886

File tree

2 files changed

+22
-10
lines changed

2 files changed

+22
-10
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,6 @@ For an overview of how "traditional" masternodes work (without hardware wallets)
5151

5252
For a self-hosted masternode setup with SPMT check the following guide:<br>
5353
[Self-hosted MN from scratch (by TheEconomist)](https://forum.pivx.org/t/setting-up-a-self-hosted-mn-from-scratch-automatic-backup-crash-notification-spmt-tool/4229)
54+
55+
For an ODROID XU4 masternode setup with SPMT, check the following video tutorial:<br>
56+
[How to setup a PIVX Masternode using SPMT and a Nano Ledger on an ODROID XU4 (by Cryptoshock LLC)](https://www.youtube.com/watch?v=lbIYh1upJJ8)

docs/vpsguide.md

Lines changed: 19 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
## Masternode VPS setup
22
### Install the latest version of the PIVX wallet onto your masternode.
3-
The lastest version can be found here: https://github.com/PIVX-Project/PIVX/releases <br>
3+
The current guide uses PIVX wallet version 3.1.1 as reference.
4+
Always make sure to use the latest version which can be found at this link:<br>
5+
https://github.com/PIVX-Project/PIVX/releases <br>
46
<br>
57
Go to your home directory:
68
```
@@ -9,18 +11,17 @@ cd ~
911

1012
From your home directory, download the latest version from the PIVX GitHub repository:
1113
```
12-
wget https://github.com/PIVX-Project/PIVX/releases/download/v3.1.0.2/pivx-3.1.0.2-x86_64-linux-gnu.tar.gz
14+
wget https://github.com/PIVX-Project/PIVX/releases/download/v3.1.1/pivx-3.1.1-x86_64-linux-gnu.tar.gz
1315
```
1416

15-
Make sure you choose the correct version of the core wallet.
1617
Unzip and extract:
1718
```
18-
tar -zxvf pivx-3.1.0.2-x86_64-linux-gnu.tar.gz
19+
tar -zxvf pivx-3.1.1-x86_64-linux-gnu.tar.gz
1920
```
2021

21-
Go to your PIVX 3.0.0 bin directory:
22+
Go to your PIVX 3.1.1 bin directory:
2223
```
23-
cd ~/pivx-3.1.0/bin
24+
cd ~/pivx-3.1.1/bin
2425
```
2526

2627
>*Note*: If this is the first time running the wallet in the VPS, you’ll need to attempt to start the wallet with `./pivxd`. This will place the config files in your `~/.pivx` data directory.<br>
@@ -39,8 +40,8 @@ Use nano (or vi, or any text editor) to create a configuration file:
3940
nano pivx.conf
4041
```
4142

42-
Inser the required fields.
43-
Make sure to replace rpcuser and rpcpassword with your own, as well as the vps IP and the *mnPrivKey* obtained from SPMT.
43+
Insert the required fields.
44+
Make sure to replace rpcuser and rpcpassword with your own, as well as the IP address of the VPS and the *mnPrivKey* obtained from SPMT.
4445
```
4546
rpcuser=<long random username>
4647
rpcpassword=<longer random password>
@@ -52,7 +53,6 @@ logtimestamps=1
5253
maxconnections=256
5354
masternode=1
5455
externalip=<your unique public ip address>
55-
bind=<your unique public ip address>
5656
masternodeaddr=<your unique public ip address>:51472
5757
masternodeprivkey=<your mnPrivKey>
5858
```
@@ -65,7 +65,7 @@ Exit and save (`CTRL+X`).
6565
Now, you need to finally start the wallet (for the second time).<br>
6666
First go back to your installed wallet directory
6767
```
68-
cd ~/pivx-3.1.0/bin
68+
cd ~/pivx-3.1.1/bin
6969
```
7070

7171
and then start the wallet using
@@ -78,3 +78,12 @@ You can check the status of the sync with:
7878
```
7979
./pivx-cli mnsync status
8080
```
81+
82+
When the output shows the following
83+
```
84+
"IsBlockchainSynced": true,
85+
...
86+
"RequestedMasternodeAssets": 999,
87+
"RequestedMasternodeAttempt": 0
88+
```
89+
The masternode is ready to be started from the controller.

0 commit comments

Comments
 (0)