[et_pb_section admin_label=”section”]
[et_pb_row admin_label=”row”]
[et_pb_column type=”4_4″][et_pb_text admin_label=”Text”]Once you have MasterNode configured, you might want to check status and see, if everything works fine.

// Start ArcticCoin MasterNode

Once you have arcticcoind up and running you can start MasterNode role.

arcnode01@arc-srv-01:~/.arcticcore$ arcticcoin-cli goldminenode start-all
{
"overall": "Successfully started 1 goldminenodes, failed to start 0, total 1",
"detail": {
"status": {
"alias": "mn1",
"result": "successful"
}
}
}

// Check status of your MasterNode

To see if MasterNode is started you can use command line tool.

arcnode01@arc-srv-01:~/.arcticcore$ arcticcoin-cli goldminenode status
{
"vin": "CTxIn(COutPoint(DEPOSIT_TRANSACTION_ID, 1), scriptSig=)",
"service": "XX.XX.XX.XX:7209",
"payee": "MN_WALLET_ADDRESS",
"status": "Goldminenode successfully started"
}

 

// Verify details of your MasterNode

Here you can verify detailed configuration of MasterNode.

arcnode01@arc-srv-01:~/.arcticcore$ arcticcoin-cli goldminenode list-conf
{
"goldminenode": {
"alias": "mn1",
"address": "XX.XX.XX.XX:7209",
"privateKey": "PRIVATE_KEY_OF_YOUR_MN",
"txHash": "DEPOSIT_TRANSACTION_ID",
"outputIndex": "1",
"status": "ENABLED"
}
}

 

// Check debug.log to see information from MasterNode daemon

If you are interested in MasterNode activity you can keep watching it.

arcnode01@arc-srv-01:~/.arcticcore$ tail -f ~/.arcticcore/debug.log

[/et_pb_text][/et_pb_column]
[/et_pb_row]
[/et_pb_section]