Post
Topic
Board Announcements (Altcoins)
Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX
by
dashwhale
on 19/10/2015, 09:12:00 UTC

Automatic restart of crashed or hung masternodes

Dashwhale updater is a script, you install on the server you run your masternode. It collects the version and the blockheight of your masternode and checks, if your masternode is operating correctly. The data is pushed to the Dashwhale server, so you have comfortable access to your masternode data via the Dashwhale website and mobile apps.

All data is interpretated and in case your masternode is determined to be unfunctional for at least 10 minutes, it is automatically restarted. In addition, you are notified by email, mobile push notification or slack. Automatic restart makes sure your masternode does not drop of the payment list and you don't miss payments.

Download lastest Dashwhale updater supporting automatic restarts here:

https://www.dashwhale.org/downloads/dashwhale-updater-v4.tgz


Best,
Rango

P.S. Dashwhale updater supports multiple masternodes. Check out the example config:

Code:
our %masternodes = (
   'Xuia3V5v51AFTjYNtz6tpu9YrKYoWc9Ruz' => {
     'rpc_host'         => 'localhost',
     'rpc_port'         => 9998,
     'rpc_user'         => 'masternode1',
     'rpc_password'       => '123password',
     'daemon_autorestart'   => 'disabled',
     'daemon_binary'       => '/usr/bin/dashd',
     'daemon_datadir'     => '/root/.dash'
   },
   'Xo1cwpFNHff5Nj12qWWXhCDyv5fPCdGZNR' => {
     'rpc_host'         => 'localhost',
     'rpc_port'         => 9998,
     'rpc_user'         => 'masternode2',
     'rpc_password'       => '123password',
     'daemon_autorestart'   => 'disabled',
     'daemon_binary'       => '/usr/bin/dashd',
     'daemon_datadir'     => '/root/.dash'
   }
);