 # ChainCoin Masternode Setup Guide This guide will show you how to setup a ***masternode with a controller wallet*** (Windows). This means that instead of holding your CHC coins on the VPS server you will hold it on your Windows Wallet instead. #### Update History 7/15/2017 - Initial Doc ### Setting up the Control Wallet First Go to the chaincoin website and download the Windows Wallet `http://www.chaincoin.org/chaincoin-wallet/` 1) Download and install the wallet and ***wait for your blockchain to sync***. 2) For Each MasterNode you want to create, create a receiving address, if you are setting up 2 masternode you would create 2 receiving addresses. Do this by going to ***File -> Receiving Addresses -> New in the wallet*** Use a meanginful label name to identify your masternodes for example MN1, MN2. 3) For each MasterNode create a masternode key. Do this by going to the RPC console in the wallet ***Tools -> Debug Console*** and type in `masternode genkey` which should give us a long string. Keep note of each of these keys as we will be using this later. **Remeber you need to do this for each MasterNode as each masternode will need it's own unique key**. 4) You whould now have one receiving address and one masternode key **Per MasterNode***. Note these as we will place them in the masternode.conf file explained below. ### Setting up the masternode.conf File Please note where you set the default directory upon intial startup of the wallet. Navigate to the chaincoin directory: Default directory is: C:\Users\ *username* \AppData\Roaming\ChainCoin **You should see a backup folder, block, chainstate, and chaincoin.conf** In your ChainCoin Directory create a file called ***masternode.conf***, if one does not exist. You can create this file by opening up notepad and saving a blank file in the chaincoin directory as ***masternode.conf***. The masternode.conf file is where we will put information on each masternode in this format: Doc for masternode.conf: `https://github.com/chaincoin/chaincoin/blob/master/doc/masternode_conf.md` ``` # Masternode config file # Format: alias IP:port masternodeprivkey collateral_output_txid collateral_output_index # Example: mn1 127.0.0.2:51474 93HaYBVUCYjEMeeH1Y4sBGLALQZE1Yc1K64xiqgX37tGBDQL8Xg 2bcd3c84c84f87eaa86e4e56834c92927a07f9e18718810b92e0d0324456a67c 0 <MASTERNODE_ALIAS> <SERVER_IP_ADDRESS>:11994 <MASTERNODE_PRIVATE_KEY> <TX_OUTPUT_ID> <TX_10K_OUTPUT_INDEX> ``` Lets define the parameters for the format: **Alias**: The alias portion is just a name for ease of use you want to name your masternode for exampel MN1 **IP/Port**: This will be the IP address of your VPS server and the port will be 11994 **Masternode Private Key***: This is a unique key that we will generate for ***each*** masternode by using the command `masternode genkey` in the Tools -> Debug Console screen located in the wallet. **TXID Collateral**: This is the transaction id for the 1,000 CHC you sent to the wallet address **TX Output Index**: This will either be a 0 or 1 and point to the 1,000 CHC on the transaction. In the example below we can see the 1,000 CHC is second so the TX output will be 1. If it was above it would be a 0. ***Use the Chaincoin Block Explorer to find the TXID and TX Output Index http://104.238.153.140:3001/***  #### Steps 1) Setup the masternode.conf file we just created using the information above for ***each*** masternode. It should look like this:  **Remember the IP address will be the VPS IP address we setup below** 2) Save the masternode.conf file. --------------------------------------------------------- ### Setting up our VPS (Virtual Private Server) Create a VPS on your perferred provider, in this setup I will use Vultr which you can sign up here: `http://www.vultr.com/?ref=7182750` 1) After you sign up create a new VPS machine by clicking on the ***+*** button to "Deploy a New Server". * Select your preferred location for your VPS server * Select the Ubuntu Server x64bit 14.04 ***The Ubuntu Version needs to be 14.04*** * Select your server size, the recommended size will be the 1GB server which at this time is $5 a month  * Give it a meaningful name for example *ChainCoinMN1*, you also have the option to enable automatic backups if you want ***If you have multiple masternodes to setup then we will need to create one VPS per MN as recommened by the developers, we can do this by setting up on MasterNode and then creating a snapshot to quickly create the others*** 2) We need to login to our new VPS server and download the wallet, but first we need to access it. There are various programs to access linux VPS machines but we will be using Putty for this guide. * Go to the Putty website and download and install the client `https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html` * Install and run Putty. Now we need to enter the VPS credentials to login. The username will be: root The Password will be located by clicking on VPS on the Vultr site.  * After we logged in we will need to type a series of commands to get started **in order** **Create Swap File** Run these commands to make a swapfile: ``` sudo dd if=/dev/zero of=/var/swap.img bs=1024k count=1000 sudo mkswap /var/swap.img sudo swapon /var/swap.img ``` To make the swap file persist if the server is rebooted: ``` sudo chmod 0600 /var/swap.img sudo chown root:root /var/swap.img sudo nano /etc/fstab ``` Append the following line to the end of the file: `/var/swap.img none swap sw 0 0` **Save the file by using cntrl+s and confirm the changes** Install the dependencies needed before compiling the Masternode ``` sudo apt-get update sudo apt-get install automake sudo apt-get install libdb++-dev sudo apt-get install build-essential libtool autotools-dev sudo apt-get install autoconf pkg-config libssl-dev sudo apt-get install libboost-all-dev sudo apt-get install libminiupnpc-dev sudo apt-get install git sudo apt-get install software-properties-common sudo apt-get install python-software-properties sudo apt-get install g++ ``` Download and compile the Berkely DB v4.8 database ``` sudo add-apt-repository ppa:bitcoin/bitcoin sudo apt-get update sudo apt-get install libdb4.8-dev libdb4.8++-dev -y ``` Download the chaincoin source code: ``` cd ~ git clone https://github.com/chaincoin/chaincoin.git ``` Compile the masternode using the Berkely DB v4.8 and no GUI ``` cd ~/chaincoin/ ./autogen.sh ./configure --without-gui make sudo make install ``` -------------------- #### **Note:** If you are setting up multiple masternodes, it will be a good idea to at this point to create a snapshot of this VPS machine now to speed the installation of new masternodes. To Create a Snapshot follow the following setps: * Go to your Vultr Dashboard and click on the VPS machine you want to snapshot, and navigate to the Snapshot Menu  * Give your snapshot a name for example ChainCoin_seed * Click on ***Take Snapshot*** and wait for the process to complete. *At the time of writting this guide snapshots on Vultr are free* * When the snapshot is complete you can now use this snapshot to create ***New VPS Servers for new MasterNodes*** To create a new VPS Server with the Snapshot we just created: * Deploy a new server by clickin on the **+** icon to deploy a new server\ *Select your preferred region *When selecting *Server Type* look for the ***Snapshot*** tab and select your snapshot. **Note** The server size has to be equal to or greater than the server you created the snapshot from.  This will speed up setting up new masternodes by allowing you to start from the steps below for each new masternode. *It is important to note that you will have to change the HostName for each new snapshot server to match your new name*. You can do this by entering the following on the command line to change your Hostname to match: ``` sudo nano /etc/hosts sudo nano /etc/hostname ``` -------------------- Edit the configuration file for the Masternode a. Go to the configuration folder: `cd ~/.chaincoin/` b. If the folder doesn’t exist, create it with `mkdir ~/.chaincoin/` and then use `cd ~/.chaincoin/` to go into the config folder c. List the contents and look for chaincoin.conf ls d. If the file doesn’t exist, create it like this: `touch chaincoin.conf` e. Edit the file: `nano chaincoin.conf` f. Add these lines to the file if they don’t already exist: ``` rpcuser=(create a username) rpcpassword=(enter a strong password) rpcallowip=127.0.0.1 daemon=1 server=1 listen=1 maxconnections=256 masternode=1 externalip=(VPS IP Address) bind=(VPS IP Address) masternodeaddr=(VPS IP Address):11994 masternodeprivkey=(Insert your masternode key we generated above) ``` *The rpcuser and rpcpassword values are for the RPC interface, allowing you to interact with the Masternode from the command line. Use any values you like but keep a copy of them on file somewhere.* * Run chaincoind and wait for it to sync. This may take a while as it needs to download a large file. ``` chaincoind ``` **Once your masternode has synced to the blockchain we will be ready to start with the next step which is starting the MasterNode from your Windows Wallet** --------------------------------------------- #### Starting your new MasterNode * Go to your Windows wallet and open the RPC console by going to **Tools -> Debug Console** * Enter the following command into the RPC console `masternode start-many (wallet password)` If your wallet is encrypted which I recommend you do then you would put your password in place of (wallet password). You should see a message in the console: ``` “overall” : “Successfully started masternode, failed to start 0, total 1”, “detail” : “status” : “alias” : “masternode1”, “result” : “successful” Done. ``` ##### Checking on your MasterNode You can check if your masternode is running by opening the RPC console by going to **Tools -> Debug Console** and entering `masternode list status IPAddress` to get a full list of masternodes enter: `masternode list` to stop your masternode `masternode stop-many` OR `masternode stop-alias mnAlias` to see count of masternodes `masternode count` to start a specific masternode use `masternode start-alias mnAlias` ---------------------------------- ### Acknowledgments Thanks to @jeffblogs for providign some of the content to this guide: https://steemit.com/@jeffblogs **Also a BIG Thanks to all those ChainCoin HODLers!! Keep on HODL'in**
author | usncrypto |
---|---|
permlink | chaincoin-masternode-setup-guide |
category | chaincoin |
json_metadata | {"tags":["chaincoin","masternode","masternodesetup","guides"],"users":["jeffblogs"],"image":["http://www.chaincoin.org/wp-content/uploads/2017/04/logo-hdr.png","https://github.com/major684/chaincoin_bootstrap/blob/master/imgs/Explorer_example.JPG?raw=true","https://github.com/major684/chaincoin_bootstrap/blob/master/imgs/masternodesetup.JPG?raw=true","https://github.com/major684/chaincoin_bootstrap/blob/master/imgs/vps1.JPG?raw=true","https://github.com/major684/chaincoin_bootstrap/blob/master/imgs/vps2.JPG?raw=true","https://github.com/major684/chaincoin_bootstrap/blob/master/imgs/vps3.JPG?raw=true","https://github.com/major684/chaincoin_bootstrap/blob/master/imgs/vps4.JPG?raw=true"],"links":["http://104.238.153.140:3001/","https://steemit.com/@jeffblogs"],"app":"steemit/0.1","format":"markdown"} |
created | 2017-07-15 17:24:57 |
last_update | 2017-07-15 17:24:57 |
depth | 0 |
children | 24 |
last_payout | 2017-07-22 17:24:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.238 HBD |
curator_payout_value | 0.072 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11,233 |
author_reputation | 10,975,644,673 |
root_title | "ChainCoin MasterNode Setup Guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,590,453 |
net_rshares | 67,364,030,522 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
savvepro | 0 | 2,997,181,217 | 100% | ||
steemitboard | 0 | 226,827,942 | 1% | ||
diehard2k9 | 0 | 0 | 100% | ||
ntech | 0 | 0 | 100% | ||
saltysamaritan | 0 | 0 | 100% | ||
crypstein | 0 | 0 | 100% | ||
ursineguy | 0 | 0 | 100% | ||
dekm | 0 | 6,061,456,963 | 100% | ||
alainite | 0 | 282,346,336 | 1% | ||
drlexus | 0 | 0 | 100% | ||
rayfrek | 0 | 53,159,278,351 | 100% | ||
redhill | 0 | 0 | 100% | ||
ilay | 0 | 0 | 100% | ||
ticagrelor | 0 | 1,160,695,275 | 100% | ||
dbzenhosting | 0 | 1,160,688,545 | 100% | ||
softgrip | 0 | 0 | 100% | ||
sodanexus | 0 | 1,154,876,795 | 100% | ||
cryptorodent | 0 | 1,160,679,098 | 100% | ||
matador | 0 | 0 | 100% | ||
hodlor | 0 | 0 | 80% | ||
bitcoindata | 0 | 0 | 100% | ||
fuzzybluecoins | 0 | 0 | 100% | ||
boosey | 0 | 0 | 100% | ||
zoomo | 0 | 0 | 100% | ||
grendelorr | 0 | 0 | 100% |
I've got chaincoin and HODLing :) I want a Masternode
author | alainite |
---|---|
permlink | re-usncrypto-chaincoin-masternode-setup-guide-20170716t104111009z |
category | chaincoin |
json_metadata | {"tags":["chaincoin"],"app":"steemit/0.1"} |
created | 2017-07-16 10:41:09 |
last_update | 2017-07-16 10:41:09 |
depth | 1 |
children | 1 |
last_payout | 2017-07-23 10:41:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 53 |
author_reputation | 3,773,610,796,661 |
root_title | "ChainCoin MasterNode Setup Guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,657,256 |
net_rshares | 1,160,682,245 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
usncrypto | 0 | 1,160,682,245 | 100% |
Buy the dips until you get one!
author | usncrypto |
---|---|
permlink | re-alainite-re-usncrypto-chaincoin-masternode-setup-guide-20170718t184807432z |
category | chaincoin |
json_metadata | {"tags":["chaincoin"],"app":"steemit/0.1"} |
created | 2017-07-18 18:48:06 |
last_update | 2017-07-18 18:48:06 |
depth | 2 |
children | 0 |
last_payout | 2017-07-25 18:48:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 31 |
author_reputation | 10,975,644,673 |
root_title | "ChainCoin MasterNode Setup Guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,899,381 |
net_rshares | 2,937,237,593 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
savvepro | 0 | 2,937,237,593 | 100% |
should I have to install Default directory( C:\Users\ username \AppData\Roaming\ChainCoin)?? I already installed another directory....
author | hsejin314 |
---|---|
permlink | re-usncrypto-chaincoin-masternode-setup-guide-20170718t174655963z |
category | chaincoin |
json_metadata | {"tags":["chaincoin"],"app":"steemit/0.1"} |
created | 2017-07-18 17:46:57 |
last_update | 2017-07-18 17:46:57 |
depth | 1 |
children | 1 |
last_payout | 2017-07-25 17:46:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 134 |
author_reputation | 6,924,979,416 |
root_title | "ChainCoin MasterNode Setup Guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,894,461 |
net_rshares | 1,160,673,342 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
digitalcypher | 0 | 1,160,673,342 | 100% |
No it doesn't matter where you put it, I have mine put in another directory as well.
author | usncrypto |
---|---|
permlink | re-hsejin314-re-usncrypto-chaincoin-masternode-setup-guide-20170718t184544741z |
category | chaincoin |
json_metadata | {"tags":["chaincoin"],"app":"steemit/0.1"} |
created | 2017-07-18 18:45:45 |
last_update | 2017-07-18 18:45:45 |
depth | 2 |
children | 0 |
last_payout | 2017-07-25 18:45:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 84 |
author_reputation | 10,975,644,673 |
root_title | "ChainCoin MasterNode Setup Guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,899,177 |
net_rshares | 1,137,459,875 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
digitalcypher | 0 | 1,137,459,875 | 100% |
Thanks for giving credits @usncrypto :)
author | jeffblogs |
---|---|
permlink | re-usncrypto-chaincoin-masternode-setup-guide-20171010t093112896z |
category | chaincoin |
json_metadata | {"tags":["chaincoin"],"users":["usncrypto"],"app":"steemit/0.1"} |
created | 2017-10-10 09:31:18 |
last_update | 2017-10-10 09:31:18 |
depth | 1 |
children | 0 |
last_payout | 2017-10-17 09:31:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 39 |
author_reputation | 482,749,416,094 |
root_title | "ChainCoin MasterNode Setup Guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,279,424 |
net_rshares | 0 |
Many thanks for the great guide. Do we have to keep the Windows wallet running 24/7 or can we close the wallet after finishing the setup successful?
author | ntech |
---|---|
permlink | re-usncrypto-chaincoin-masternode-setup-guide-20170724t205352393z |
category | chaincoin |
json_metadata | {"tags":["chaincoin"],"app":"steemit/0.1"} |
created | 2017-07-24 20:53:54 |
last_update | 2017-07-24 20:53:54 |
depth | 1 |
children | 1 |
last_payout | 2017-07-31 20:53:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.035 HBD |
curator_payout_value | 0.009 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 148 |
author_reputation | 13,251,976,723 |
root_title | "ChainCoin MasterNode Setup Guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,584,600 |
net_rshares | 12,436,449,694 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ntech | 0 | 11,250,637,301 | 20% | ||
softgrip | 0 | 1,185,812,393 | 100% | ||
togoshige | 0 | 0 | 100% |
I have the same question. My windows machine rebooted in the middle of the night, and my MasterNodes went offline - even though they are on 2x Vultr VPS. Really annoying.
author | softgrip |
---|---|
permlink | re-ntech-re-usncrypto-chaincoin-masternode-setup-guide-20170725t065635011z |
category | chaincoin |
json_metadata | {"tags":["chaincoin"],"app":"steemit/0.1"} |
created | 2017-07-25 06:56:36 |
last_update | 2017-07-25 06:56:36 |
depth | 2 |
children | 0 |
last_payout | 2017-08-01 06:56:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.037 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 172 |
author_reputation | -499,744,979,639 |
root_title | "ChainCoin MasterNode Setup Guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,632,561 |
net_rshares | 12,412,614,269 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ntech | 0 | 11,250,637,301 | 20% | ||
softgrip | 0 | 1,161,976,968 | 100% |
Hello @unscrypto ! Question: If I already set up my masternode (generated pvt key using Putty after setting up Vultr server) , how do I then access this masternode through the rpc console on my desktop? So far nothing is working... I used your directions , inserting the masternode pvt key which was generated from chaincoind through Putty, shouldnt this work? Thanks for your reply!!
author | olivers-wilde |
---|---|
permlink | re-usncrypto-chaincoin-masternode-setup-guide-20170801t171810455z |
category | chaincoin |
json_metadata | {"tags":["chaincoin"],"users":["unscrypto"],"app":"steemit/0.1"} |
created | 2017-08-01 17:18:12 |
last_update | 2017-08-01 17:18:12 |
depth | 1 |
children | 1 |
last_payout | 2017-08-08 17:18:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 386 |
author_reputation | 101,310,283,965 |
root_title | "ChainCoin MasterNode Setup Guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,446,896 |
net_rshares | 0 |
I am trying to figure out the same thing. Importing Your remote mn's private key will show an updated balance, but even creating a local masternode.conf for qt-wallet did not really work. Always get a "could not allocate vin" error msg.
author | bongoking |
---|---|
permlink | re-olivers-wilde-re-usncrypto-chaincoin-masternode-setup-guide-20170804t012240396z |
category | chaincoin |
json_metadata | {"tags":["chaincoin"],"app":"steemit/0.1"} |
created | 2017-08-04 01:22:39 |
last_update | 2017-08-04 01:22:39 |
depth | 2 |
children | 0 |
last_payout | 2017-08-11 01:22:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 236 |
author_reputation | 59,266,610,856 |
root_title | "ChainCoin MasterNode Setup Guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,701,374 |
net_rshares | 0 |
another helpful command is chaincoind masternode list activeseconds YOURIP, cos sometimes it says enabled but activeseconds it is stuck at 0, which means is not actually running
author | redhill |
---|---|
permlink | re-usncrypto-chaincoin-masternode-setup-guide-20170731t120146559z |
category | chaincoin |
json_metadata | {"tags":["chaincoin"],"app":"steemit/0.1"} |
created | 2017-07-31 12:01:45 |
last_update | 2017-07-31 12:02:27 |
depth | 1 |
children | 0 |
last_payout | 2017-08-07 12:01:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 178 |
author_reputation | 5,982,778,632 |
root_title | "ChainCoin MasterNode Setup Guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,312,614 |
net_rshares | 2,295,421,894 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
redhill | 0 | 2,295,421,894 | 100% |
you also need a local chaincoin.conf like this ----------------------------------------------------- chaincoin.conf (Controller Wallet) ----------------------------------------------------- rpcuser=xxxx rpcpassword=xxx rpcallowip=127.0.0.1 listen=0 server=1 daemon=1 logtimestamps=1 maxconnections=256 mnconflock=0
author | redhill |
---|---|
permlink | re-usncrypto-chaincoin-masternode-setup-guide-20170731t203236401z |
category | chaincoin |
json_metadata | {"tags":["chaincoin"],"app":"steemit/0.1"} |
created | 2017-07-31 20:32:36 |
last_update | 2017-07-31 20:32:36 |
depth | 1 |
children | 0 |
last_payout | 2017-08-07 20:32:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 316 |
author_reputation | 5,982,778,632 |
root_title | "ChainCoin MasterNode Setup Guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,351,795 |
net_rshares | 2,295,421,894 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
redhill | 0 | 2,295,421,894 | 100% |
hello i was wondering on what to do when you have exceeded the disk space? my masternode keeps says cant connect to server even after upgrading to a higher capacity. How do i reconnect?
author | saltysamaritan |
---|---|
permlink | re-usncrypto-chaincoin-masternode-setup-guide-20171004t160327891z |
category | chaincoin |
json_metadata | {"tags":["chaincoin"],"app":"steemit/0.1"} |
created | 2017-10-04 16:03:24 |
last_update | 2017-10-04 16:03:24 |
depth | 1 |
children | 0 |
last_payout | 2017-10-11 16:03:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 185 |
author_reputation | 4,840,618,539 |
root_title | "ChainCoin MasterNode Setup Guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,777,061 |
net_rshares | 0 |
Hey @usncrypto, I successfully used your guide in conjunction with the "locking down the system" tutorial from chaincoin.org YouTube videos. I now have 2 master nodes running :P So last night I had a power outage - and when I checked the status of my nodes in the morning (on Vultr) they were offline. Does this "windows backed master node" need the windows wallet running 24/7, or can I have the nodes just off doing their thing? And further to this - how can I have the MasterNodes auto start if the VPS reboots? Do they have to be manually run from the debug console? Thanks, Ned
author | softgrip |
---|---|
permlink | re-usncrypto-chaincoin-masternode-setup-guide-20170724t231931715z |
category | chaincoin |
json_metadata | {"tags":["chaincoin"],"users":["usncrypto"],"app":"steemit/0.1"} |
created | 2017-07-24 23:19:33 |
last_update | 2017-07-25 13:32:51 |
depth | 1 |
children | 0 |
last_payout | 2017-07-31 23:19:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.035 HBD |
curator_payout_value | 0.009 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 590 |
author_reputation | -499,744,979,639 |
root_title | "ChainCoin MasterNode Setup Guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,596,808 |
net_rshares | 12,442,408,550 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ntech | 0 | 11,250,637,301 | 20% | ||
softgrip | 0 | 1,191,771,249 | 100% |
Congratulations @usncrypto! You have completed some achievement on Steemit and have been rewarded with new badge(s) : [](http://steemitboard.com/@usncrypto) You published your First Post [](http://steemitboard.com/@usncrypto) You got a First Vote [](http://steemitboard.com/@usncrypto) You made your First Comment Click on any badge to view your own Board of Honor on SteemitBoard. For more information about SteemitBoard, click [here](https://steemit.com/@steemitboard) If you no longer want to receive notifications, reply to this comment with the word `STOP` > By upvoting this notification, you can help all Steemit users. Learn how [here](https://steemit.com/steemitboard/@steemitboard/http-i-cubeupload-com-7ciqeo-png)!
author | steemitboard |
---|---|
permlink | steemitboard-notify-usncrypto-20170715t192500000z |
category | chaincoin |
json_metadata | {"image":["https://steemitboard.com/img/notifications.png"]} |
created | 2017-07-15 19:25:00 |
last_update | 2017-07-15 19:25:00 |
depth | 1 |
children | 2 |
last_payout | 2017-07-22 19:25:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 997 |
author_reputation | 38,975,615,169,260 |
root_title | "ChainCoin MasterNode Setup Guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,600,466 |
net_rshares | 1,120,049,775 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
digitalcypher | 0 | 1,120,049,775 | 100% | ||
olivers-wilde | 0 | 0 | 100% |
when i type in chaincoind i get "command not found" ? any idea why? i tried it both in the root dir and chaincoin dir.
author | globalrenegade |
---|---|
permlink | re-steemitboard-steemitboard-notify-usncrypto-20170723t033656756z |
category | chaincoin |
json_metadata | {"tags":["chaincoin"],"app":"steemit/0.1"} |
created | 2017-07-23 03:36:57 |
last_update | 2017-07-23 03:36:57 |
depth | 2 |
children | 1 |
last_payout | 2017-07-30 03:36:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 118 |
author_reputation | 46,442,474,084 |
root_title | "ChainCoin MasterNode Setup Guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,374,125 |
net_rshares | 0 |
I had the same problem, just repeat the setup from the beginning. Maybe some mistake during the copy & paste part.
author | ntech |
---|---|
permlink | re-globalrenegade-re-steemitboard-steemitboard-notify-usncrypto-20170724t204858607z |
category | chaincoin |
json_metadata | {"tags":["chaincoin"],"app":"steemit/0.1"} |
created | 2017-07-24 20:49:00 |
last_update | 2017-07-24 20:49:00 |
depth | 3 |
children | 0 |
last_payout | 2017-07-31 20:49:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 114 |
author_reputation | 13,251,976,723 |
root_title | "ChainCoin MasterNode Setup Guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,584,118 |
net_rshares | 0 |
Congratulations @usncrypto! You have completed some achievement on Steemit and have been rewarded with new badge(s) : [](http://steemitboard.com/@usncrypto) You got your First payout Click on any badge to view your own Board of Honor on SteemitBoard. For more information about SteemitBoard, click [here](https://steemit.com/@steemitboard) If you no longer want to receive notifications, reply to this comment with the word `STOP` > By upvoting this notification, you can help all Steemit users. Learn how [here](https://steemit.com/steemitboard/@steemitboard/http-i-cubeupload-com-7ciqeo-png)!
author | steemitboard |
---|---|
permlink | steemitboard-notify-usncrypto-20170724t152341000z |
category | chaincoin |
json_metadata | {"image":["https://steemitboard.com/img/notifications.png"]} |
created | 2017-07-24 15:23:42 |
last_update | 2017-07-24 15:23:42 |
depth | 1 |
children | 0 |
last_payout | 2017-07-31 15:23:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 688 |
author_reputation | 38,975,615,169,260 |
root_title | "ChainCoin MasterNode Setup Guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,549,404 |
net_rshares | 0 |
Congratulations @usncrypto! You have received a personal award! [](http://steemitboard.com/@usncrypto) 1 Year on Steemit <sub>_Click on the badge to view your Board of Honor._</sub> **Do not miss the last post from @steemitboard:** [SteemitBoard World Cup Contest - Sweden vs England](https://steemit.com/steemitboard/@steemitboard/steemitboard-world-cup-contest-sweden-vs-england) --- **Participate in the [SteemitBoard World Cup Contest](https://steemit.com/steemitboard/@steemitboard/steemitboard-world-cup-contest-collect-badges-and-win-free-sbd)!** Collect World Cup badges and win free SBD Support the Gold Sponsors of the contest: [@good-karma](https://v2.steemconnect.com/sign/account-witness-vote?witness=good-karma&approve=1) and [@lukestokes](https://v2.steemconnect.com/sign/account-witness-vote?witness=lukestokes.mhth&approve=1) --- > Do you like [SteemitBoard's project](https://steemit.com/@steemitboard)? Then **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
author | steemitboard |
---|---|
permlink | steemitboard-notify-usncrypto-20180706t153312000z |
category | chaincoin |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2018-07-06 15:33:12 |
last_update | 2018-07-06 15:33:12 |
depth | 1 |
children | 0 |
last_payout | 2018-07-13 15:33:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,159 |
author_reputation | 38,975,615,169,260 |
root_title | "ChainCoin MasterNode Setup Guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 63,672,821 |
net_rshares | 0 |
Congratulations @usncrypto! You received a personal award! <table><tr><td>https://steemitimages.com/70x70/http://steemitboard.com/@usncrypto/birthday2.png</td><td>Happy Birthday! - You are on the Steem blockchain for 2 years!</td></tr></table> <sub>_You can view [your badges on your Steem Board](https://steemitboard.com/@usncrypto) and compare to others on the [Steem Ranking](https://steemitboard.com/ranking/index.php?name=usncrypto)_</sub> ###### [Vote for @Steemitboard as a witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1) to get one more award and increased upvotes!
author | steemitboard |
---|---|
permlink | steemitboard-notify-usncrypto-20190706t152830000z |
category | chaincoin |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2019-07-06 15:28:30 |
last_update | 2019-07-06 15:28:30 |
depth | 1 |
children | 0 |
last_payout | 2019-07-13 15:28:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 624 |
author_reputation | 38,975,615,169,260 |
root_title | "ChainCoin MasterNode Setup Guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 87,896,341 |
net_rshares | 0 |
this documentation is incredible!! as soon as i get my first MN, i will give this a spin.
author | wonderpiece |
---|---|
permlink | re-usncrypto-chaincoin-masternode-setup-guide-20170715t174513644z |
category | chaincoin |
json_metadata | {"tags":["chaincoin"],"app":"steemit/0.1"} |
created | 2017-07-15 17:45:12 |
last_update | 2017-07-15 17:45:12 |
depth | 1 |
children | 4 |
last_payout | 2017-07-22 17:45:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 89 |
author_reputation | 0 |
root_title | "ChainCoin MasterNode Setup Guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,592,243 |
net_rshares | 0 |
thanks! ya just trying to help the whole community of CHCHodlers get their masternodes up and running!
author | usncrypto |
---|---|
permlink | re-wonderpiece-re-usncrypto-chaincoin-masternode-setup-guide-20170715t183800244z |
category | chaincoin |
json_metadata | {"tags":["chaincoin"],"app":"steemit/0.1"} |
created | 2017-07-15 18:38:00 |
last_update | 2017-07-15 18:38:00 |
depth | 2 |
children | 3 |
last_payout | 2017-07-22 18:38:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 102 |
author_reputation | 10,975,644,673 |
root_title | "ChainCoin MasterNode Setup Guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,596,819 |
net_rshares | 0 |
Hi usncrypto, great tutorial. Would you be able to provide a masternode with a controller wallet (Mac) version please.
author | kiy818 |
---|---|
permlink | re-usncrypto-re-wonderpiece-re-usncrypto-chaincoin-masternode-setup-guide-20170718t142129634z |
category | chaincoin |
json_metadata | {"tags":["chaincoin"],"app":"steemit/0.1"} |
created | 2017-07-18 14:21:30 |
last_update | 2017-07-18 14:21:30 |
depth | 3 |
children | 2 |
last_payout | 2017-07-25 14:21:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 118 |
author_reputation | 306,985,015 |
root_title | "ChainCoin MasterNode Setup Guide" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,877,127 |
net_rshares | 0 |