create account

Scripts for Managing Multiple SmartCash Smart Nodes on One Server by lukestokes

View this thread on: hive.blogpeakd.comecency.com
· @lukestokes ·
$74.88
Scripts for Managing Multiple SmartCash Smart Nodes on One Server
I finally got all my Smart Nodes up and running (see <a href="https://steemit.com/smartcash/@lukestokes/smartnodes-are-among-us-and-smartcash-price-is-rising">my previous post</a> for more on what a Smart Node is) and needed to create some scripts to manage them.

This isn't really a start up guide as much as it tells a story of what I did, and it might be helpful for those who already understand how Smart Nodes work, but want some scripts to manage multiple nodes on a server.

The first step on my new box was to get IP addresses added.

Adding lines like this in the `iface eth0 inet static` block inside `/etc/network/interfaces/` did the trick: 

```
  up route add -net x.x.x.11 netmask 255.255.255.240 gw y.y.y.y eth0
  up ip addr add x.x.x.11/28 dev eth0
  up ip addr add x.x.x.12/28 dev eth0
```

Where y.y.y.y is the main server IP and x.x.x.11, x.x.x.12, x.x.x.13, etc are the IPs we want to add. This example assumes you have <a href="https://www.aelius.com/njh/subnet_sheet.html">a /28 which has 15 usable IPs</a>. The 11, 12, 13 are just examples.

Next I followed <a href="http://smartnodes.cc/files/SmartCash_SmartNode_Setup_Guide_v1.1.pdf">the start up guide</a> and will add notes here starting with these parts:

```
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:smartcash/ppa
sudo apt-get update
sudo apt-get install smartcashd

mkdir ~/smartcash/
mkdir ~/smartcash/SmartNode_bootstrap
cd ~/smartcash/
```

You can use all of the scripts I made on your server as well (make sure they are executable via `chmod +x <file>`). A lot of these borrow heavily from the scripts you can find here: https://github.com/SmartCash/smartnode but have been modified to handle multiple nodes.

* <a href="https://gist.github.com/lukestokes/9530eb772f111b1cec9382d0088808ad">create_node.sh</a>
  Script for copying from an already synced SmartCash SmartNode to a SmartNode01, SmartNode02, etc folder.
  
* <a href="https://gist.github.com/lukestokes/695705fc89d037f6b0167ba416542103">clear_all_logs.sh</a>
  Clears all log files every other day

* <a href="https://gist.github.com/lukestokes/585b03d8531b2e96738f34c2d2212eb2">smart-cli.sh</a>
  Call smartcash-cli for a specific node

* <a href="https://gist.github.com/lukestokes/467045e2472b76d6c2388f193f9028c3">checkdaemons.sh</a>
  If the blocknumber isn't increasing, restart the deamon.

* <a href="https://gist.github.com/lukestokes/4e0348ae4bde2e0b518951899f51f831">makerun.sh</a>
  Make sure each smart node is running. If it's not, restart it.

* <a href="https://gist.github.com/lukestokes/c69d13b6fc2440d3f41d2d1ea9b911b5">printblocks.sh</a>
  Print out the current block numbers for all nodes.

* <a href="https://gist.github.com/lukestokes/be1bf88ea07d08b3b7a9d44ef35b99ae">smart-start.sh</a>
  Start a specific Smart Node.

Start with a bootstrap of the blockchain via:

```
wget http://proteanx.com/txindexstrap.zip
unzip txindexstrap.zip
```

Copy those folders into SmartNode_bootstrap and start up your server via smart-start.sh:

```
./smart-start.sh _bootstrap
```

That will take a _long_ time to sync up. You check the status with:

```
./smart-cli.sh _bootstrap getinfo
```

Once it's done, you're ready to start creating your nodes. First, shut it down:

```
./smart-cli.sh _bootstrap stop
```

Now you should be ready. Have all your GenKeys, IPs, Node Numbers, and RPC Ports ready. I just increment the Node Numbers (01, 02, 03, etc) and RPC Ports (9679, 9680, 9681, etc)

```
./create_node.sh
```

The just fill in the prompts starting with your first node (01), and you should be good to go. Next just start your first node with:

```
./smart-start.sh 01
```

Verify it's working with:

```
./smart-cli.sh 01 getinfo
```

Once you get all your nodes set up, create two text files `start_number.txt` and `end_number.txt`and put in them your start and end numbers for how many nodes you have. For example, if you had 30 nodes on one machine, put a single `1` in start_number.txt and `30` in end_number.txt.

If you have additional servers to set up, I recommend zipping up the SmartNode_bootstrap folder and sending it to the new server via scp to save you some time.

I also set the following crontab entries to ensure the log files don't get too big, the blocknumbers are increasing, and the daemons are running:

```
0 0 */2 * * ~/smartcash/clear_all_logs.sh
*/2 * * * * ~/smartcash/makerun.sh
*/30 * * * * ~/smartcash/checkdaemons.sh
```

I spent quite a bit of time putting these scripts together to manage my nodes, so I hope it saves you some time.

Please don't ask me what the future price of SmartCash will be or if Smart Nodes will remain this profitable for long. I have no idea.

Using this calculator tool by @bitcoiner as a guide, here's what we see now:

<center><a href="https://smartcash.bitcoiner.me/smartnodes/calculator/"><img src="https://content.screencast.com/users/lukestokes/folders/Jing/media/bf7ce3b0-b454-44da-b65c-0ed75e567b9e/00004398.png"></a></center>

Sounds crazy, right?

I don't know if we'll end up having > 50,000 nodes or if the price will go down or what. Maybe hyperinflation will tank the price. Maybe node opperators will regularly sell to add down pressure. At this point, I'm treating all of this as pretend money until it has a lot more volume, is traded on a lot more exchanges, and has a lot more use-cases as cash in real-world situations. For now, I'm just having fun, taking a risk on a relatively new project.

The Smart Cash team has dealt with quite a few bumps and bruises lately. They had an issue with the zerocoin protocol which may have led to some hacked coins (I'm still waiting for an official announcement from their team on that). Fixing that caused problems for exchanges, including Cryptopia which, as of this post, is delisting SmartCash (you can still get them on <a href="https://wallet.crypto-bridge.org/market/BRIDGE.SMART_BRIDGE.BTC">Crypto Bridge</a>). 

<center><img src="https://content.screencast.com/users/lukestokes/folders/Jing/media/3be282b0-bdfa-4b6c-8738-28d26d038d02/00004400.png"></center>

The rollout of Smart Nodes went fairly well, but there's also some issues with the rewards payout not being correct and some (like myself) not getting any rewards while others are getting double rewards. Hopefully this will be fixed by their team very soon. I like how they are communicating well about the issue:

<center><img src="https://content.screencast.com/users/lukestokes/folders/Jing/media/d8e72363-283f-4982-9062-fce0c7ebc551/00004399.png"></center>

You can find out more via their <a href="https://discord.gg/BDUh8jr">Discord channel</a>.

Here are my previous Smart Cash Posts:

<ul>
<li>$0.02222 (0.00000463 BTC) <a href="https://steemit.com/smartcash/@lukestokes/my-smartcash-story">My SmartCash Story</a></li>
<li>$0.03416 (0.00000648 BTC) <a href="https://steemit.com/smartcash/@lukestokes/i-bought-some-more-smartcash">I Bought Some More SmartCash</a></li>
<li>$0.08218 (0.00001485 BTC) <a href="https://steemit.com/trading/@lukestokes/i-finally-took-the-loss">I Finally Took the Loss</a></li>
<li>$0.12584 (0.00002270 BTC) <a href="https://steemit.com/smartcash/@lukestokes/smartcash-is-blowing-up-social-capital-and-the-warm-feeling-of-being-lucky">SmartCash is Blowing Up! Social Capital and the Warm Feeling of Being Lucky!</a></li>
<li>$0.05442 (0.00000669 BTC) <a href="https://steemit.com/cryptocurrency/@lukestokes/teaching-cryptocurrency-to-the-next-generation-my-son-just-bought-dollar833-more-smartcash">Teaching Cryptocurrency to the Next Generation: My Son Just Bought $8.33 More SmartCash</a></li>
<li>$0.69885 (0.00005205 BTC) <a href="https://steemit.com/smartcash/@lukestokes/smartnodes-are-among-us-and-smartcash-price-is-rising">SmartNodes Are Among Us and SmartCash Price Is Rising!</a></li>
<li>Price as of this post: $0.35449 (0.00003868 BTC)</li>
</ul>



-----

<img src="https://steemitimages.com/DQmR3hhPtgcqhNDZyArucp2dZv2pG62WDKiWam8jrppCXNB/on_a_log_cropped.png">

<p>
    <div class="pull-right">
        <a href="https://steemit.com/introduceyourself/@lukestokes/my-name-is-luke-let-s-create-the-world-we-want-to-live-in"><img src="https://steemitimages.com/DQmRh7DLpp1hDKugxyWxdDof7rkj5fpBus6tECvv7vcmL6d/smile.png" /></a>
    </div>
    <em><a href="https://steemit.com/introduceyourself/@lukestokes/my-name-is-luke-let-s-create-the-world-we-want-to-live-in">Luke Stokes</a> is a father, <a href="https://steemit.com/@corinnestokes">husband</a>, <a href="https://www.foxy.io/">business owner</a>, programmer, STEEM witness, and voluntaryist who wants to help create a world we all want to live in. Visit <a href="http://understandingblockchainfreedom.com/">UnderstandingBlockchainFreedom.com</a></em>
</p>

<center>[![](https://steemitimages.com/50x60/http://steemitboard.com/@lukestokes/commented.png?v=20171221)](http://steemitboard.com/board.html?user=lukestokes) [![](https://steemitimages.com/50x60/http://steemitboard.com/@lukestokes/votes.png?v=20171221)](http://steemitboard.com/board.html?user=lukestokes) [![](https://steemitimages.com/60x70/http://steemitboard.com/@lukestokes/posts.png?v=20171221)](http://steemitboard.com/board.html?user=lukestokes) [![](https://steemitimages.com/100x80/http://steemitboard.com/@lukestokes/level.png?v=20171221)](http://steemitboard.com/board.html?user=lukestokes) [![](https://steemitimages.com/60x70/http://steemitboard.com/@lukestokes/comments.png?v=20171221)](http://steemitboard.com/board.html?user=lukestokes) [![](https://steemitimages.com/50x60/http://steemitboard.com/@lukestokes/voted.png?v=20171221)](http://steemitboard.com/board.html?user=lukestokes) [![](https://steemitimages.com/50x60/http://steemitboard.com/@lukestokes/payout.png?v=20171221)](http://steemitboard.com/board.html?user=lukestokes)</center>

<center><sub><a href="https://steemit.com/witness-category/@lukestokes/vote-luke-stokes-for-witness-as-lukestokes-mhth">I'm a Witness</a>! Please <a href="https://steemit.com/~witnesses">vote for @lukestokes.mhth</a></sub></center><center><a href="https://steemit.com/~witnesses" alt="Please vote for @lukestokes.mhth"><img src="https://content.screencast.com/users/lukestokes/folders/Jing/media/f5b0fd42-ddf4-421c-a087-0b6ac81810a3/00004401.png"></a></center>
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 91 others
properties (23)
authorlukestokes
permlinkscripts-for-managing-multiple-smartcash-smart-nodes-on-one-server
categorysmartcash
json_metadata{"tags":["smartcash","smartnodes","scripts","devops"],"users":["bitcoiner"],"image":["https://content.screencast.com/users/lukestokes/folders/Jing/media/bf7ce3b0-b454-44da-b65c-0ed75e567b9e/00004398.png","https://content.screencast.com/users/lukestokes/folders/Jing/media/3be282b0-bdfa-4b6c-8738-28d26d038d02/00004400.png","https://content.screencast.com/users/lukestokes/folders/Jing/media/d8e72363-283f-4982-9062-fce0c7ebc551/00004399.png","https://steemitimages.com/DQmR3hhPtgcqhNDZyArucp2dZv2pG62WDKiWam8jrppCXNB/on_a_log_cropped.png","https://steemitimages.com/DQmRh7DLpp1hDKugxyWxdDof7rkj5fpBus6tECvv7vcmL6d/smile.png","https://steemitimages.com/50x60/http://steemitboard.com/@lukestokes/commented.png?v=20171221","https://steemitimages.com/50x60/http://steemitboard.com/@lukestokes/votes.png?v=20171221","https://steemitimages.com/60x70/http://steemitboard.com/@lukestokes/posts.png?v=20171221","https://steemitimages.com/100x80/http://steemitboard.com/@lukestokes/level.png?v=20171221","https://steemitimages.com/60x70/http://steemitboard.com/@lukestokes/comments.png?v=20171221","https://steemitimages.com/50x60/http://steemitboard.com/@lukestokes/voted.png?v=20171221","https://steemitimages.com/50x60/http://steemitboard.com/@lukestokes/payout.png?v=20171221","https://content.screencast.com/users/lukestokes/folders/Jing/media/f5b0fd42-ddf4-421c-a087-0b6ac81810a3/00004401.png"],"links":["https://steemit.com/smartcash/@lukestokes/smartnodes-are-among-us-and-smartcash-price-is-rising","https://www.aelius.com/njh/subnet_sheet.html","http://smartnodes.cc/files/SmartCash_SmartNode_Setup_Guide_v1.1.pdf","https://github.com/SmartCash/smartnode","https://gist.github.com/lukestokes/9530eb772f111b1cec9382d0088808ad","https://gist.github.com/lukestokes/695705fc89d037f6b0167ba416542103","https://gist.github.com/lukestokes/585b03d8531b2e96738f34c2d2212eb2","https://gist.github.com/lukestokes/467045e2472b76d6c2388f193f9028c3","https://gist.github.com/lukestokes/4e0348ae4bde2e0b518951899f51f831","https://gist.github.com/lukestokes/c69d13b6fc2440d3f41d2d1ea9b911b5","https://gist.github.com/lukestokes/be1bf88ea07d08b3b7a9d44ef35b99ae","https://smartcash.bitcoiner.me/smartnodes/calculator/","https://wallet.crypto-bridge.org/market/BRIDGE.SMART_BRIDGE.BTC","https://discord.gg/BDUh8jr","https://steemit.com/smartcash/@lukestokes/my-smartcash-story","https://steemit.com/smartcash/@lukestokes/i-bought-some-more-smartcash","https://steemit.com/trading/@lukestokes/i-finally-took-the-loss","https://steemit.com/smartcash/@lukestokes/smartcash-is-blowing-up-social-capital-and-the-warm-feeling-of-being-lucky","https://steemit.com/cryptocurrency/@lukestokes/teaching-cryptocurrency-to-the-next-generation-my-son-just-bought-dollar833-more-smartcash","https://steemit.com/introduceyourself/@lukestokes/my-name-is-luke-let-s-create-the-world-we-want-to-live-in","https://steemit.com/@corinnestokes","https://www.foxy.io/","http://understandingblockchainfreedom.com/","http://steemitboard.com/board.html?user=lukestokes","https://steemit.com/witness-category/@lukestokes/vote-luke-stokes-for-witness-as-lukestokes-mhth","https://steemit.com/~witnesses"],"app":"steemit/0.1","format":"markdown"}
created2018-02-01 22:24:00
last_update2018-02-01 22:24:00
depth0
children69
last_payout2018-02-08 22:24:00
cashout_time1969-12-31 23:59:59
total_payout_value61.933 HBD
curator_payout_value12.950 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10,272
author_reputation554,601,966,217,919
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,239,401
net_rshares12,170,479,361,843
author_curate_reward""
vote details (155)
@alao ·
$0.19
Glad I found this!!  I'm really into masternodes and this look pretty similar and the amount to start seems low enough for me!!!
πŸ‘  
properties (23)
authoralao
permlinkre-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180202t213232262z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-02 21:32:30
last_update2018-02-02 21:32:30
depth1
children1
last_payout2018-02-09 21:32:30
cashout_time1969-12-31 23:59:59
total_payout_value0.143 HBD
curator_payout_value0.044 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length128
author_reputation23,510,767,447,737
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,492,638
net_rshares29,966,401,170
author_curate_reward""
vote details (1)
@brianphobos ·
Me and a friend got enough coins for Smart Nodes and I looked into a lot of different masternodes and this one honestly seems like a sleeper considering you can get the Smart Node earnings and Smart Rewards each month as well.   Our plan is to earn enough coins and keep putting up more Smart Nodes.   Time will tell but I guess I have my hopes these things will be worth 50K + a piece sooner than later.
properties (22)
authorbrianphobos
permlinkre-alao-re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180204t050007360z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-04 05:00:06
last_update2018-02-04 05:00:06
depth2
children0
last_payout2018-02-11 05:00:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length404
author_reputation170,165,448,541,606
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,803,666
net_rshares0
@ategun ·
When programmers give updates, 
What does a novice like me understands?
πŸ‘  
properties (23)
authorategun
permlinkre-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t224905107z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-01 22:49:36
last_update2018-02-01 22:49:36
depth1
children1
last_payout2018-02-08 22:49:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length71
author_reputation608,930,546,201
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,243,541
net_rshares531,067,619
author_curate_reward""
vote details (1)
@lukestokes ·
Not every post is for everyone. :)
πŸ‘  
properties (23)
authorlukestokes
permlinkre-ategun-re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t230644889z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-01 23:06:45
last_update2018-02-01 23:06:45
depth2
children0
last_payout2018-02-08 23:06:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length34
author_reputation554,601,966,217,919
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,246,401
net_rshares3,153,888,233
author_curate_reward""
vote details (1)
@brianphobos ·
Thanks Luke!   I think I will end up running two Smartnodes on the same server.  This helps a lot .
properties (22)
authorbrianphobos
permlinkre-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180204t043226275z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-04 04:32:24
last_update2018-02-04 04:32:24
depth1
children0
last_payout2018-02-11 04:32:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length99
author_reputation170,165,448,541,606
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,799,282
net_rshares0
@cloudspyder ·
I really don't figure that out to manage 4 Masternode in one server. I am thinking of virtual server in one virtual server but it don't work as what I expected.
properties (22)
authorcloudspyder
permlinkre-lukestokes-201823t165128883z
categorysmartcash
json_metadata{"tags":["smartcash","smartnodes","scripts","devops"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-02-03 08:45:21
last_update2018-02-03 08:45:21
depth1
children0
last_payout2018-02-10 08:45:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length160
author_reputation8,281,689,777,163
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,595,670
net_rshares0
@consciousangel7 ·
Thanks for the detailed post and for addressing the current issues! It’s important to be real:) Glad that @SmartCash is working on it and communicating back. We love Smartcash and it will be fun to watch this coin blow up!!
properties (22)
authorconsciousangel7
permlinkre-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t232308772z
categorysmartcash
json_metadata{"tags":["smartcash"],"users":["smartcash"],"app":"steemit/0.1"}
created2018-02-01 23:23:09
last_update2018-02-01 23:23:09
depth1
children5
last_payout2018-02-08 23:23:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length223
author_reputation15,940,173,309,631
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,248,976
net_rshares0
@lukestokes · (edited)
$0.05
@smartbot tip @consciousangel7 25
πŸ‘  
properties (23)
authorlukestokes
permlinkre-consciousangel7-re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t235509726z
categorysmartcash
json_metadata{"tags":["smartcash"],"users":["smartbot","consciousangel7"],"app":"steemit/0.1"}
created2018-02-01 23:55:09
last_update2018-02-02 00:41:42
depth2
children4
last_payout2018-02-08 23:55:09
cashout_time1969-12-31 23:59:59
total_payout_value0.042 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length33
author_reputation554,601,966,217,919
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,254,422
net_rshares8,976,460,435
author_curate_reward""
vote details (1)
@consciousangel7 ·
Thanks for the love @lukestokes :)
properties (22)
authorconsciousangel7
permlinkre-lukestokes-re-consciousangel7-re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180204t190311478z
categorysmartcash
json_metadata{"tags":["smartcash"],"users":["lukestokes"],"app":"steemit/0.1"}
created2018-02-04 19:03:12
last_update2018-02-04 19:03:12
depth3
children0
last_payout2018-02-11 19:03:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length34
author_reputation15,940,173,309,631
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,956,342
net_rshares0
@smartbot ·
$0.58
**Ξ£$$$** Tipped **@consciousangel7** <code>**Ξ£25 SMART**</code>! Comment <code>**@smartbot help**</code> to claim. Currently the price of SmartCash in the market is <code>**$0.343 USD**</code> per <code>**SMART**</code>. Current value of the tip is <code>**$8.58 USD**</code>. To find out more about SmartCash, please visit **https://smartcash.cc**.
πŸ‘  
properties (23)
authorsmartbot
permlinkscashbot-20180202t004243625z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"smartcash/tipbot"}
created2018-02-02 00:42:45
last_update2018-02-02 00:42:45
depth3
children2
last_payout2018-02-09 00:42:45
cashout_time1969-12-31 23:59:59
total_payout_value0.434 HBD
curator_payout_value0.142 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length349
author_reputation3,721,888,729,782
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,262,738
net_rshares93,519,095,074
author_curate_reward""
vote details (1)
@crystalgeometry · (edited)
$0.04
Wow, thanks for sharing and explaining your process. This will definitely be helpful if I decide to go with multiple nodes. I'm actually hoping for a nice dip to start accumulating some more SMART. Their discord is super helpful as well. Hopefully the payment scheduling is just a minor blip before a long haul of steady node payouts :)
πŸ‘  
properties (23)
authorcrystalgeometry
permlinkre-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t230431072z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-01 23:04:30
last_update2018-02-01 23:06:42
depth1
children1
last_payout2018-02-08 23:04:30
cashout_time1969-12-31 23:59:59
total_payout_value0.038 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length336
author_reputation3,326,526,421,068
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,246,027
net_rshares6,362,097,634
author_curate_reward""
vote details (1)
@lukestokes ·
$0.04
I hope so too. Still waiting for my first reward after more than 2 days of being live.
πŸ‘  
properties (23)
authorlukestokes
permlinkre-crystalgeometry-re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t230950949z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-01 23:09:51
last_update2018-02-01 23:09:51
depth2
children0
last_payout2018-02-08 23:09:51
cashout_time1969-12-31 23:59:59
total_payout_value0.031 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length86
author_reputation554,601,966,217,919
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,246,877
net_rshares6,363,886,202
author_curate_reward""
vote details (1)
@cyb3rcrypto ·
Thanks mate, I hope you have a great day!!!
properties (22)
authorcyb3rcrypto
permlinkre-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t231051683z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-01 23:10:51
last_update2018-02-01 23:10:51
depth1
children0
last_payout2018-02-08 23:10:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length43
author_reputation802,086,899
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,247,034
net_rshares0
@ddepalma ·
Ahhhh this will help many people, as I had trouble with these same issues as well. Will resteem and follow :)
properties (22)
authorddepalma
permlinkre-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180202t025241008z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-02 02:52:42
last_update2018-02-02 02:52:42
depth1
children0
last_payout2018-02-09 02:52:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length109
author_reputation2,187,608,041
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,285,809
net_rshares0
@flemingfarm ·
I have had an AWS account and I was able to get a 3 year t2 micro which is 1GB ram and 30GB hd for $100 which is about $3/month cost. I have 2 payouts on my node already so have already paid back my node cost. From here on it is just profit. I am REALLY curious to see what happens as the number of nodes increases.  

I am pretty sure Smartcash will do well, it will really depend on the overall crypto-sphere. Everything is far to closely tied to bitcoin right now so are still under it's influence.
properties (22)
authorflemingfarm
permlinkre-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180202t011811199z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-02 01:18:15
last_update2018-02-02 01:18:15
depth1
children2
last_payout2018-02-09 01:18:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length501
author_reputation1,362,319,035,393,876
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,269,043
net_rshares0
@lukestokes ·
Wow, well done! That's a nice set up, but my hunch is you'll need more than a GIG as the blockchain grows long before 3 years, but I guess time will tell.
properties (22)
authorlukestokes
permlinkre-flemingfarm-re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180202t051055381z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-02 05:10:54
last_update2018-02-02 05:10:54
depth2
children1
last_payout2018-02-09 05:10:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length154
author_reputation554,601,966,217,919
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,310,824
net_rshares0
@flemingfarm ·
Yeah, i was thinking about it when setting it up, the future needs, but if it comes to it I can always grab another upgraded instance and shift to it if needed.  With everyone's scripts being made available it will be even easier to migrate if I have to.
properties (22)
authorflemingfarm
permlinkre-lukestokes-re-flemingfarm-re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180202t160356260z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-02 16:04:00
last_update2018-02-02 16:04:00
depth3
children0
last_payout2018-02-09 16:04:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length254
author_reputation1,362,319,035,393,876
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,432,494
net_rshares0
@gamsam ·
$0.07
I'll put my money on it going up. I feel it in my bonesπŸ˜‚. It's gonna rise.

I don't know of you wouldn't mind me translating this to French.
It will really be of much benefit to the new small upcoming French community.
I would of course give you credit as the original author and put your link in the post.
πŸ‘  , ,
properties (23)
authorgamsam
permlinkre-lukestokes-201821t232753683z
categorysmartcash
json_metadata{"tags":["smartcash","smartnodes","scripts","devops"],"app":"esteem/1.5.0","format":"markdown+html","community":"esteem"}
created2018-02-01 22:28:00
last_update2018-02-01 22:28:00
depth1
children2
last_payout2018-02-08 22:28:00
cashout_time1969-12-31 23:59:59
total_payout_value0.066 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length306
author_reputation68,278,661,463,063
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,240,090
net_rshares11,318,206,277
author_curate_reward""
vote details (3)
@lukestokes ·
Sure, go for it. Feel free to link back to this original so they can give me some upvote love as well. :)
properties (22)
authorlukestokes
permlinkre-gamsam-re-lukestokes-201821t232753683z-20180201t223757671z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-01 22:37:57
last_update2018-02-01 22:37:57
depth2
children1
last_payout2018-02-08 22:37:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length105
author_reputation554,601,966,217,919
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,241,678
net_rshares0
@gamsam ·
Sure thing
Thanks☺
properties (22)
authorgamsam
permlinkre-lukestokes-201821t234354505z
categorysmartcash
json_metadata{"tags":"smartcash","app":"esteem/1.5.0","format":"markdown+html","community":"esteem"}
created2018-02-01 22:44:03
last_update2018-02-01 22:44:03
depth3
children0
last_payout2018-02-08 22:44:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
author_reputation68,278,661,463,063
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,242,643
net_rshares0
@gangas ·
Awesome , great post. I recently discovered ur interesting blog. Which I didn't hesitate to follow you , upvote and resteem. Support me too , I am new on steemit. Upvote my comment . Thanks.
properties (22)
authorgangas
permlinkre-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t225727620z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-01 22:57:33
last_update2018-02-01 22:57:33
depth1
children0
last_payout2018-02-08 22:57:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length190
author_reputation-352,261,216,847
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,244,822
net_rshares0
@islandcrypto ·
great info luke
πŸ‘  
properties (23)
authorislandcrypto
permlinkre-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t222616965z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-01 22:26:18
last_update2018-02-01 22:26:18
depth1
children0
last_payout2018-02-08 22:26:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length15
author_reputation117,713,720,904
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,239,801
net_rshares658,246,309
author_curate_reward""
vote details (1)
@jankasparec ·
Still hoping to jump into this one before the general FUD is over and everything will be pricey :) Thanks LUKE! Great work as always!
properties (22)
authorjankasparec
permlinkre-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180202t035330682z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-02 03:53:33
last_update2018-02-02 03:53:33
depth1
children0
last_payout2018-02-09 03:53:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length133
author_reputation68,292,610,382,616
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,296,750
net_rshares0
@jewelrana876 ·
$0.33
thanks for your shearing.
πŸ‘  ,
properties (23)
authorjewelrana876
permlinkre-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180204t012500007z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-04 01:25:00
last_update2018-02-04 01:25:00
depth1
children0
last_payout2018-02-11 01:25:00
cashout_time1969-12-31 23:59:59
total_payout_value0.283 HBD
curator_payout_value0.050 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length25
author_reputation1,013,966,486,641
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,770,775
net_rshares49,918,717,484
author_curate_reward""
vote details (2)
@kil ·
Thank s
properties (22)
authorkil
permlinkre-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t224614860z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-01 22:46:21
last_update2018-02-01 22:46:21
depth1
children0
last_payout2018-02-08 22:46:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation273,665,869,015
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,242,990
net_rshares0
@kingscrown ·
wish there was some easier way, i also have a few nodes to setup ;x
properties (22)
authorkingscrown
permlinkre-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180202t021806720z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-02 02:18:12
last_update2018-02-02 02:18:12
depth1
children0
last_payout2018-02-09 02:18:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length67
author_reputation2,113,705,347,129,712
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,279,695
net_rshares0
@marylene-roy ·
Well is smart creative to setup a smartcash nodes as well as working on it i so much congratulate you@lukestokesand would love to learn more of this
πŸ‘  
properties (23)
authormarylene-roy
permlinkre-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t225517216z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-01 22:55:30
last_update2018-02-01 22:55:30
depth1
children0
last_payout2018-02-08 22:55:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length148
author_reputation27,151,015,419
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,244,494
net_rshares389,080,689
author_curate_reward""
vote details (1)
@mejustandrew ·
You seem pretty passionate by SmartCash setuping nodes and investing in it. For me what are you doing looks so complicated that I am even afraid to try to understand it...
properties (22)
authormejustandrew
permlinkre-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t223834828z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-01 22:38:33
last_update2018-02-01 22:38:33
depth1
children11
last_payout2018-02-08 22:38:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length171
author_reputation6,245,491,946,485
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,241,793
net_rshares0
@lukestokes ·
This post is useful for a small group of people. For the rest... feel free to ignore.
properties (22)
authorlukestokes
permlinkre-mejustandrew-re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t230718271z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-01 23:07:18
last_update2018-02-01 23:07:18
depth2
children10
last_payout2018-02-08 23:07:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length85
author_reputation554,601,966,217,919
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,246,495
net_rshares0
@mejustandrew ·
Crypto news are useful for a small group of people too, but I don't know if everybody else should ignore them. Maybe on the same principle, some cutious people will read more about SmartCash and start to setup their own Smart nodes. On the other side, I agree with you, this article is more useful for a specific group of people :D
properties (22)
authormejustandrew
permlinkre-lukestokes-re-mejustandrew-re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t231458146z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-01 23:12:15
last_update2018-02-01 23:12:15
depth3
children9
last_payout2018-02-08 23:12:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length331
author_reputation6,245,491,946,485
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,247,263
net_rshares0
@mfg ·
UPVOTED AND HERE IS A REWARD FOR ALL SMARTIANS
https://steemit.com/cryptocurrency/@mfg/awesome-crypto-tool-for-promote-n-upcomming-altcoins-cryptojokes-cryptofun-cryptoart-cryptocartoon
properties (22)
authormfg
permlinkre-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180203t190350916z
categorysmartcash
json_metadata{"tags":["smartcash"],"links":["https://steemit.com/cryptocurrency/@mfg/awesome-crypto-tool-for-promote-n-upcomming-altcoins-cryptojokes-cryptofun-cryptoart-cryptocartoon"],"app":"steemit/0.1"}
created2018-02-03 19:03:51
last_update2018-02-03 19:03:51
depth1
children0
last_payout2018-02-10 19:03:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length185
author_reputation143,341,964,619
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,711,235
net_rshares0
@nitego · (edited)
All nodes on one server one point of failure by the same argument one  point to manage. I would like to know the specifications of the server you use for this . Is it virtual or a physical server. Another question I have wondered about is how you solve the issue of unique  IP addresses.  I may reconsidere my setup if this is really workable. Thanks for sharing. I am re-steeming this.
πŸ‘  
properties (23)
authornitego
permlinkre-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180202t025422365z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-02 02:54:21
last_update2018-02-02 02:55:03
depth1
children2
last_payout2018-02-09 02:54:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length386
author_reputation1,111,539,510,872
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,286,081
net_rshares0
author_curate_reward""
vote details (1)
@lukestokes ·
It's a dedicated server. I originally went for a 64G server to manage them all, but there was a limitation in the number of IPs I could get, so now I have a 64G and a 32G. I could have easily done the nodes I wanted with just two 32G servers. It is a potential point of failure, but we're already up over 5k nodes, so I don't think it's a real concern for the network. I'll be adding even more monitoring scripts so it'll text me if needed, as I've done with my witness servers.
properties (22)
authorlukestokes
permlinkre-nitego-re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180202t050407381z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-02 05:04:06
last_update2018-02-02 05:04:06
depth2
children1
last_payout2018-02-09 05:04:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length478
author_reputation554,601,966,217,919
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,309,584
net_rshares0
@nitego ·
Thanks for the very detailed reply. I will seriously look at this option it is certainly more efficient to manage. It is a better plan for scaling number of nodes as well as handling more volume of transactions in the future.
properties (22)
authornitego
permlinkre-lukestokes-re-nitego-re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180202t190541463z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-02 19:05:42
last_update2018-02-02 19:05:42
depth3
children0
last_payout2018-02-09 19:05:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length225
author_reputation1,111,539,510,872
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,467,203
net_rshares0
@oucan ·
Nice post bro, when i reach the second now i will use your script!!
properties (22)
authoroucan
permlinkre-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180202t145558309z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-02 14:57:30
last_update2018-02-02 14:57:30
depth1
children0
last_payout2018-02-09 14:57:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length67
author_reputation503,137,117,944
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,419,239
net_rshares0
@photolander ·
this is going to be usefull, I have gotten close to the 10k (7.7) and am planning to start a node, and someone I know wants one as well but has no clue about servers (even less then me) so we are looking to a solution like this
properties (22)
authorphotolander
permlinkre-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t231350484z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-01 23:13:51
last_update2018-02-01 23:13:51
depth1
children3
last_payout2018-02-08 23:13:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length227
author_reputation1,559,435,714,314
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,247,507
net_rshares0
@lukestokes ·
This is specifically for those setting up multiple nodes. If you get to the point where you're ready to set one up, be sure to check the website for the latest tutorials on how to do it (and check Discord for help).
properties (22)
authorlukestokes
permlinkre-photolander-re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t233508483z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-01 23:35:09
last_update2018-02-01 23:35:09
depth2
children0
last_payout2018-02-08 23:35:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length215
author_reputation554,601,966,217,919
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,250,994
net_rshares0
@lukestokes · (edited)
@smartbot tip @photolander 25
properties (22)
authorlukestokes
permlinkre-photolander-re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t235352445z
categorysmartcash
json_metadata{"tags":["smartcash"],"users":["smartbot","photolander"],"app":"steemit/0.1"}
created2018-02-01 23:53:51
last_update2018-02-02 00:41:33
depth2
children1
last_payout2018-02-08 23:53:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation554,601,966,217,919
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,254,197
net_rshares0
@smartbot ·
**Ξ£$$$** Tipped **@photolander** <code>**Ξ£25 SMART**</code>! Comment <code>**@smartbot help**</code> to claim. Currently the price of SmartCash in the market is <code>**$0.343 USD**</code> per <code>**SMART**</code>. Current value of the tip is <code>**$8.58 USD**</code>. To find out more about SmartCash, please visit **https://smartcash.cc**.
properties (22)
authorsmartbot
permlinkscashbot-20180202t004218620z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"smartcash/tipbot"}
created2018-02-02 00:42:18
last_update2018-02-02 00:42:18
depth3
children0
last_payout2018-02-09 00:42:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length345
author_reputation3,721,888,729,782
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,262,677
net_rshares0
@robertgenito ·
$1.94
The answer I still cannot find is... what makes smart cash novel compared to other master node systems? Anyone know? :D I’ll upvote that post 100% !
πŸ‘  
properties (23)
authorrobertgenito
permlinkre-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180204t181539706z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-04 18:15:39
last_update2018-02-04 18:15:39
depth1
children1
last_payout2018-02-11 18:15:39
cashout_time1969-12-31 23:59:59
total_payout_value1.920 HBD
curator_payout_value0.023 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length148
author_reputation7,257,911,690,980
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,947,279
net_rshares285,426,885,118
author_curate_reward""
vote details (1)
@oscarblue04 ·
Seems to be very big community based project, targeting the third world countries mainly
properties (22)
authoroscarblue04
permlinkre-robertgenito-re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180403t114605250z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-04-03 11:46:06
last_update2018-04-03 11:46:06
depth2
children0
last_payout2018-04-10 11:46:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length88
author_reputation35,391,239,887
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,104,039
net_rshares0
@sevinwilson ·
$0.60
Managing all of them on one server sounds a lot better than having to manage each of them on their own individual servers. I am quite intrigued to see what happens with the smart nodes and seeing if they get these issues worked out with the payouts for the nodes.  I would definitely would like for the going to be on some more exchanges something maybe like binance or bittrex even it’s just to get some more volume because we are somewhere around like 600x for our volume to the market cap currently.
πŸ‘  ,
properties (23)
authorsevinwilson
permlinkre-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t223440067z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-01 22:34:42
last_update2018-02-01 22:34:42
depth1
children8
last_payout2018-02-08 22:34:42
cashout_time1969-12-31 23:59:59
total_payout_value0.577 HBD
curator_payout_value0.021 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length502
author_reputation30,294,228,295,664
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,241,183
net_rshares97,915,544,869
author_curate_reward""
vote details (2)
@lukestokes ·
$0.02
Yeah, the price and market cap are both kind pretend until we get some real volume on some major exchanges. It's still early. Time will tell.
πŸ‘  
properties (23)
authorlukestokes
permlinkre-sevinwilson-re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t223922828z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-01 22:39:24
last_update2018-02-01 22:39:24
depth2
children7
last_payout2018-02-08 22:39:24
cashout_time1969-12-31 23:59:59
total_payout_value0.024 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length141
author_reputation554,601,966,217,919
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,241,903
net_rshares4,551,799,038
author_curate_reward""
vote details (1)
@sevinwilson ·
You are exactly right! I think they have a strong development team and have a great vision. I’m still not sold about what happened with rollback and cryptopia and the zerocoin exploit.
properties (22)
authorsevinwilson
permlinkre-lukestokes-re-sevinwilson-re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t230154709z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-01 23:01:54
last_update2018-02-01 23:01:54
depth3
children6
last_payout2018-02-08 23:01:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length184
author_reputation30,294,228,295,664
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,245,618
net_rshares0
@sibtainali ·
thanks for sharing this info <3
properties (22)
authorsibtainali
permlinkre-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t223201497z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-01 22:30:06
last_update2018-02-01 22:30:06
depth1
children0
last_payout2018-02-08 22:30:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation9,624,753,321
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,240,447
net_rshares0
@sparkyceh ·
Luke,
I found a lot of this info and scripts to be helpful.
I am using Ubuntu 18.04 LTS and it uses netplan not is up/down.
I add the subnets to the same interface with the route as the server ip.
I can ping the subnet IPs and I can netcat -l  9678 and it will open , but smartcashd (bind=10.10.10.2) will not open up 9678.  Any help would be great.  Other coin MNs are not as picky with the active port.
properties (22)
authorsparkyceh
permlinkre-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20181115t012305965z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-11-15 01:23:00
last_update2018-11-15 01:23:00
depth1
children0
last_payout2018-11-22 01:23:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length404
author_reputation2,925,858,923
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id75,306,564
net_rshares0
@vanemilano ·
how amazing what you do is very inspiring
UPCOTE my comnt en folow me
properties (22)
authorvanemilano
permlinkre-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180202t144850219z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-02 14:52:45
last_update2018-02-02 14:52:45
depth1
children0
last_payout2018-02-09 14:52:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length69
author_reputation301,065,647,470
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,418,341
net_rshares0
@yogaunimal ·
you are a genius, also a person who loves to share knowledge. hopefully your kindness will bring you to the top of success
properties (22)
authoryogaunimal
permlinkre-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180202t050255284z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-02 05:03:00
last_update2018-02-02 05:03:00
depth1
children0
last_payout2018-02-09 05:03:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length122
author_reputation532,190,094,714
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,309,376
net_rshares0
@yonny ·
$0.05
Hey, I don't know what your talking about, but I like the way you say it. How do I set up just a single node?
πŸ‘  
properties (23)
authoryonny
permlinkre-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180202t195802147z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-02 19:58:03
last_update2018-02-02 19:58:03
depth1
children0
last_payout2018-02-09 19:58:03
cashout_time1969-12-31 23:59:59
total_payout_value0.044 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length109
author_reputation8,829,975,962,763
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,476,517
net_rshares9,115,596,058
author_curate_reward""
vote details (1)
@yuky ·
I just setup my first smartnode! :) So excited!! thinking to buy more to have more MNs. :) Just got a quick question, where can I see its ROI and some numbers about MNs ?! Thanks!
properties (22)
authoryuky
permlinkre-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180202t153542581z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-02 15:35:42
last_update2018-02-02 15:35:42
depth1
children1
last_payout2018-02-09 15:35:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length179
author_reputation1,480,977,214,114
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,426,802
net_rshares0
@flemingfarm ·
This is the current calculator available.
https://smartcash.bitcoiner.me/smartnodes/calculator/
properties (22)
authorflemingfarm
permlinkre-yuky-re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180202t160554770z
categorysmartcash
json_metadata{"tags":["smartcash"],"links":["https://smartcash.bitcoiner.me/smartnodes/calculator/"],"app":"steemit/0.1"}
created2018-02-02 16:06:00
last_update2018-02-02 16:06:00
depth2
children0
last_payout2018-02-09 16:06:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length95
author_reputation1,362,319,035,393,876
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,432,907
net_rshares0
@yvvng ·
Awesome stuff. I'm currently working on gaining enough smartcash to set up my own nodes soon. I'm going to keep this saved for the day I'm ready to set up some master nodes. Thanks for the great work.
properties (22)
authoryvvng
permlinkre-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t235814265z
categorysmartcash
json_metadata{"tags":["smartcash"],"app":"steemit/0.1"}
created2018-02-01 23:58:09
last_update2018-02-01 23:58:09
depth1
children0
last_payout2018-02-08 23:58:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length200
author_reputation25,465,973,872
root_title"Scripts for Managing Multiple SmartCash Smart Nodes on One Server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,254,928
net_rshares0