noob here (and noobier by the minute now) - set up 1 mn fine. was running as seen in Dashcentral and CLI return msg. Then I set up a second MN and loaded the suggested push script thinking I was following the hosted README.txt instructions - now both MN's are down
--- I verified the cron job path and dashcentral.conf paths (both mn's) all point to the home directory where the dcupdater files are located, so I want to refresh and see if I'm up...how do I refresh, or can you suggest any other ideas? Thanks
Double check your home paths (in %XXXX% parenthasis) and RPC Port number (they need to be different for each MN otherwise the Daemon cant bind to the IP address). Both settings need to be different for each MN. See example for 2 masternodes below:
our %masternodes = (
'MNADDRESS' => {
'rpc_host' => 'localhost',
'rpc_port' => 9998,
'rpc_user' => 'XXXX',
'rpc_password' => 'XXXX',
'daemon_autorestart' => 'enabled',
'daemon_binary' => '/home/%MNuser1%/dashd',
'daemon_datadir' => '/home/%MNuser1%/.dash'
},
'MNADDRESS' => {
'rpc_host' => 'localhost',
'rpc_port' => 9997,
'rpc_user' => 'XXXX',
'rpc_password' => 'XXXX',
'daemon_autorestart' => 'enabled',
'daemon_binary' => '/home/%MNuser2%/dashd',
'daemon_datadir' => '/home/%MNuser2%/.dash'
}
);
It's a bit fiddly but it's usually either of the above that cause problems with push scripts...
Other than that check your crontab, it should look something like this:
SHELL=/bin/bash
PATH=/bin:/usr/bin:/usr/local/bin:/sbin:/usr/sbin:/usr/local/sbin
MAILTO=root
HOME=/
*/2 * * * * /root/dashcentral-updater/dcupdater
... Hope this helps
Walter