Advertisement
Guest User

Untitled

a guest
Feb 12th, 2019
403
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.37 KB | None | 0 0
  1. ZUMY MasterNode Setup Guide
  2.  
  3. This guide is for a single masternode, on a Ubuntu 16.04 64bit server (VPS) running headless and will be controlled from the wallet on your local computer (Control wallet Windows/mac). The wallet on the the VPS will be referred to as the Remote wallet.
  4. You will need your server details for progressing through this guide.
  5.  
  6. First the basic requirements:
  7. 1. 2000 ZMY
  8. 2. A main computer (Your everyday computer) – This will run the control wallet, hold your collateral 2000 ZMY and can be turned on and off without affecting the masternode.
  9. 3. Masternode Server (VPS – The computer that will be on 24/7)
  10. 4. A unique IP address for your VPS / Remote wallet
  11. The basic reasoning for these requirements is that, you get to keep your ZMY in your local wallet and host your masternode remotely, securely.
  12.  
  13. Local configuration:
  14. 1) Using the control wallet, enter the debug console (Tools > Debug console) and type the following command:
  15. masternode genkey
  16. (This will be the masternode’s privkey. We’ll use this later…)
  17. 2)
  18. Using the control wallet still, enter the following command:
  19. getaccountaddress MN1
  20. 3) Still in the control wallet, send 2000 ZMY to the address you generated in step 2 (Be 100% sure that you entered the address correctly. You can verify this when you paste the address into the “Pay To:” field, the label will autopopulate with MN1 ”, also make sure this is exactly 2000 ZMY ; No less, no more.)
  21. – Be absolutely 100% sure that this is copied correctly. And then check it again. We cannot help you, if you send ZMY to an incorrect address.
  22. 4) Still in the control wallet, enter the command into the console:
  23. masternode outputs
  24. (This gets the proof of transaction of sending 2000)
  25. 5) Still on the main computer, go into the PIVX data directory, by default in Windows it’ll be
  26. %Appdata%/PIVX
  27. 6) Find masternode.conf and add the following line to it:
  28. <Name of Masternode(Use the name you entered earlier for simplicity)> <Unique IP address>:32000 <The result of Step 1> <Result of Step 4> <The number after the long line in Step 4>
  29.  
  30. Example: MN1 31.14.135.27:32000 892WPpkqbr7sr6Si4fdsfssjjapuFzAXwETCrpPJubnrmU6aKzh c8f4965ea57a68d0e6dd384324dfd28cfbe0c801015b973e7331db8ce018716999 1
  31.  
  32. Substitute it with your own values and without the “<>”s
  33. VPS Remote wallet install
  34. 7) Install the latest version of the ZMY wallet onto your masternode. The lastest version can be found here: https://github.com/zumy/zumycoin/releases
  35. The wallet installation guide will be in #wallet- setup
  36. 8) Go to your ./zumy directory
  37. 9) Open Zumy.conf by nano zumy.conf
  38. Place this within
  39. rpcuser=long random username
  40. rpcpassword=longer random password
  41. rpcallowip=127.0.0.1
  42. server=1
  43. daemon=1
  44. logtimestamps=1
  45. maxconnections=256
  46. masternode=1
  47. externalip=your unique public ip address
  48. masternodeprivkey=Result of Step 1
  49.  
  50. Make sure to replace username and pass
  51. 10) Go to your ./zumyd and do
  52. ./zumyd –daemon
  53.  
  54. – From the Control wallet debug console
  55. startmasternode alias false <mymnalias>
  56.  
  57. – Back in the VPS (remote wallet), start the masternode
  58. ./zumy-cli startmasternode local false
  59.  
  60. – A message “masternode successfully started” should appear
  61. 12)Use the following command to check status:
  62. ./zumy-cli masternode status
  63.  
  64. Congratulations! You have successfully created your ZUMY masternode!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement