M
MangledBlue
Guest
Corrections in the works.....
Last edited:
exec $0;
ln -s /source/file /destination/file
cp /source/file /destination/file # now I have two copies on disk to manage
git clone https://github.com/moocowmoo/masternode_monitor
ls -l masternode_monitor/masternode_status.sh
-rwxr-xr-x 1 ubuntu ubuntu 5723 Aug 21 04:52 masternode_status.sh
export PATH=~/.dash:$PATH;
# now I can dash-cli from anywhere because it's in path, no need to copy to /usr/bin, no need for sudo
can you please update the OP
so i can update
https://dashpay.atlassian.net/wiki/pages/viewpage.action?pageId=8880189
?!
tx guys
You can also kill the page
https://dashpay.atlassian.net/wiki/pages/viewpage.action?pageId=8880189
for now
I have actually abandoned this project in favor of moocowmoo has what is called the DASHMANTrying to figure out how to build out a MN monitoring infrastructure and came across this page.
I'm lost here -- can someone fill me in on what's missing from this discussion?
Trying to figure out how to build out a MN monitoring infrastructure and came across this page.
I'm lost here -- can someone fill me in on what's missing from this discussion?
most current utilities focus on single masternode management.
my project 'dashman' https://github.com/moocowmoo/dashman also focuses on single-instance configurations.
Once I add machine-readable output, dashman will work well within a monitoring infrastructure, but I've not yet had much demand for the feature.
pm me and I'll see if I can help you find a solution that works for you
nmarley
If you are looking for a complete solution to monitor, automatically restart multiple masternodes including notifications, also check out the Dashwhale-Updater script (requires dashwhale.org account)
https://www.dashwhale.org/downloads/dashwhale-updater-v4.tgz
Example config:
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'
}
);