Advertisement
2phx

OMEGA Coin - Masternode - Windows/Windows VPS - Guide

Mar 2nd, 2018
472
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.38 KB | None | 0 0
  1. OMEGA Coin - Masternode - Windows/Windows VPS - Guide
  2. ##Note, if you think you did everything right and you are having "WATCHDOG_EXPIRED" status, simply go to step .
  3.  
  4. Download, install and sync latest OMEGA Windows wallet on both local and Windows VPS computers.
  5. https://github.com/omegacoinnetwork/omegacoin/releases
  6.  
  7. Open your local OMEGA wallet, check if you have active connection to the network(bottom-right corner), make sure you have 1001 OMEGA coins in your wallet. Go to "Settings > Options > Wallet", enable "Enable coin control features" and "Show Masternodes Tab". Now restart your wallet.
  8. Go to "Receive" tab and create a payment request by filling "Label"(name your masternode, eg MN1) and "Amount"(amount should be exactly 1000). Keep everything else unticked(remove Request InstantSend). Now click "Request payment" and copy the address "Copy Address".
  9. Go to "Send" tab and paste our copied address into "Pay To", now you should have "Label" and "Amount" correctly filled in. IMPORTANT to keep "Subtract fee from amount" UNTICKED. Keep "PrivateSend" and "InstantSend" unticked too. Now click "Send".
  10. --
  11.  
  12. Create a text document to save the following data. Now go to "Tools > Debug Console". Type "masternode genkey", this is your private key, save it to a text document.
  13. Your private key will look like this:
  14. "7929zATAyenPS9apZN543QkDi9uUdCJjGhFvyPoIQTjNQjw8pdd"
  15. --
  16.  
  17. Type "masternode outputs", this is your TxID, save it to your text document. (Note that if you are not getting your TxID, wait until your 1000 coin transaction has more confirmations or is complete)
  18. Your TxID will look like this:
  19. "8acf6e12ab210e8d8167fc800185bb3ppac3a534b4af6990001126c3a25d4146": "1"
  20. --
  21.  
  22. We are still in our local wallet. Go to "Tools > Open Masternode Configuration File". You will see a text document, add a new line without "#". When done editing, save and close this text document.
  23. [ID] you can use your previously named "Label"(eg MN1).
  24. [VPSIP] your Windows VPS IP Address.
  25. [masternodeprivkey] your private key (we previously saved it in text document)
  26. [collateral_output_txid] your TxID string (we previously saved it in text document)
  27. [collateral_output_index] your TxID single digit (we previously saved it in text document)
  28.  
  29. Format:
  30. [ID] [VPSIP:7777] [masternodeprivkey] [collateral_output_txid] [collateral_output_index]
  31.  
  32. Example:
  33. MN1 1.1.1.1:7777 7929zATAyenPS9apZN543QkDi9uUdCJjGhFvyPoIQTjNQjw8pdd 8acf6e12ab210e8d8167fc800185bb3ppac3a534b4af6990001126c3a25d4146 1
  34.  
  35. --
  36.  
  37. Close your local wallet.
  38. --
  39.  
  40. Open your Windows VPS wallet. Go to "Tools > Open Wallet Configuation File" Paste the following and edit these 4 lines: rpcuser(can be any random username), rpcpassword(can be any random password, you won't use it, but make sure it is long enough), masternodeaddr, masternodeprivkey. When done editing, save and close this text document. This is used internally within the master node software you dont need to remember the user name and password.
  41. rpcuser=YourMasternodeID
  42. rpcpassword=YourMasternodeRandomPassword
  43. rpcport=7778
  44. rpcallowip=127.0.0.1
  45. daemon=1
  46. server=1
  47. listenonion=0
  48. addnode=142.208.127.121
  49. addnode=154.208.127.121
  50. addnode=142.208.122.127
  51. listen=1
  52. staking=0
  53. port=7777
  54. masternode=1
  55. masternodeaddr=YourVpsIP:7777
  56. masternodeprivkey=YourPrivateKey
  57.  
  58. Example:
  59.  
  60. rpcuser=YourMasternodeID
  61. rpcpassword=YourMasternodeRandomPassword
  62. rpcport=7778
  63. rpcallowip=127.0.0.1
  64. daemon=1
  65. server=1
  66. listenonion=0
  67. addnode=142.208.127.121
  68. addnode=154.208.127.121
  69. addnode=142.208.122.127
  70. listen=1
  71. staking=0
  72. port=7777
  73. masternode=1
  74. masternodeaddr=1.1.1.1:7777
  75. masternodeprivkey=7929zATAyenPS9apZN543QkDi9uUdCJjGhFvyPoIQTjNQjw8pdd
  76. --
  77.  
  78. Restart your Windows VPS wallet. wait for it to fully sync.
  79. --
  80.  
  81. Open your local wallet. wait for it to fully sync. Now go to "Masternodes" tab. You will see your masternode with status "MISSING", click "Start MISSING". Status should changed to either "PRE_ENABLED" or "WATCHDOG_EXPIRED" If your status is "PRE_ENABLED" you just have to wait ~~30 minutes and it will change to ENABLED. If your status is "WATCHDOG_EXPIRED" don't panic, we are going to fix it now. DO NOT restart or close your Windows VPS wallet.
  82. --
  83.  
  84. Fixing WATCHDOG_EXPIRED. Keep your Windows VPS wallet open. Download or copy the following file to your Windows VPS.
  85. http://www.mediafire.com/file/2tuf7z4tlz6qd4q/sentinel-win64.rar
  86. Extract it and place it in your "C:\Users\YOURUSER\AppData\Roaming\OmegaCoinCore" folder.
  87.  
  88. Create a shortcut to "sentinel-win64.exe", send it to desktop or anywhere else you want.
  89.  
  90. Right click on your shortcut and go to "Properties", the "Target" line looks like this:
  91.  
  92. C:\Users\YOURUSER\AppData\Roaming\OmegaCoinCore\sentinel-win64.exe
  93.  
  94. Now add the following including the quotes "--config=C:\Users\YOURUSER\AppData\Roaming\OmegaCoinCore\omegacoin.conf"
  95.  
  96. Your "Target" line now should look like this:
  97.  
  98. C:\Users\admin\AppData\Roaming\OmegaCoinCore\sentinel-win64.exe "--config=C:\Users\admin\AppData\Roaming\OmegaCoinCore\omegacoin.conf"
  99.  
  100. Click Aplly > OK.
  101.  
  102. --
  103.  
  104. Now run your shortcut, your sentinel should start and you should see "Running sentinel" in the cmd window.
  105. --
  106.  
  107. Restart your LOCAL wallet, wait for it full sync. Go to "Masternodes" tab. Now your Masternode status should be "ENABLED". If it is not "ENABLED", wait ~~30 minutes.
  108. Congratulations! You are on board holding a Masternode of a coin that is on its way to the moon.
  109.  
  110.  
  111. oWcw5VwUKRx5tKywpDnkTVHUKB7z3k53kp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement