Skip to content

NewCapital/nodemaster

 
 

Repository files navigation

Nodemaster

The Nodemaster scripts is a collection of utilities to manage, setup and update masternode instances.

I am quite confident this is the single best and almost effortless way to setup different crypto masternodes, without bothering too much about the setup part.

If this script helped you in any way, please contribute some feedback. BTC donations also welcome and never forget:

Have fun, this is crypto after all!

BTC  33ENWZ9RCYBG7nv6ac8KxBUSuQX64Hx3x3

Feel free to use my reflink to signup and receive a bonus w/ vultr:

Supported masternode projects

The ever growing list of supported projects is now maintained at https://nodemaster-vps.com/supported-masternode-projects/.


NOTE on the VPS choice for starters

Vultr is highly recommended for this kind of setup. I created an easy step-by-step guide for the VPS provider vultr that will guide you through the hardest parts.


About / Background

Many masternode crypto currencies only have incomplete or even non-existing instructions available how to setup a masternode from source.

This project started as handy bash script to setup my $PIVX masternodes in 2016 when there was almost zero documentation and anything that existed was either $DASH specific, sucked and in most cases both. For that reason, i started to work on a not-so-sucking way to install a lot of different masternodes with next to none manual intervention.

If you are not already aware, visit the project site and join the slack. The website at https://pivx.org/ is also well worth a visit.

Many people use binaries, end of with an insecure configuration or fail completely. This is obviously bad for the stability of the individual network.

After doing hundreds of masternode installations in the past two years, i decided to share some of my existing auto-install and management scripts with the community to work on a generalised & reliable setup for all masternode coins.

Comparing with building from source manually, you will benefit from using this script in the following way(s):

  • 100% auto-compilation and 99% of configuration on the masternode side of things. It is currently only tested on a vultr VPS but should work almost anywhere where IPv6 addresses are available
  • Developed with recent Ubuntu versions in mind, currently only 16.04 is supported
  • Installs 1-100 (or more!) masternodes in parallel on one machine, with individual config and data
  • Compilation is currently from source for the desired git repo tag (configurable via config files) Some security hardening is done, including firewalling and a separate user
  • Automatic startup for all masternode daemons
  • This script needs to run as root, the masternodes will and should not!
  • It's ipv6 enabled, tor/onion will follow

Installation

SSH to your VPS and clone the Github repository:

git clone https://github.com/NewCapital/nodemaster.git && cd nodemaster

Install & configure your desired master node with options:

./install.sh -p twins

Examples for typical script invocation

These are only a couple of examples for typical setups. Check my [easy step-by-step guide for vultr that will guide you through the hardest parts.

Install & configure 4 TWINS masternodes with IPv6 support:

./install.sh -p twins -c 4 -n 6

Update daemon of previously installed TWINS masternodes to the latest version:

./install.sh -p twins -u

Install 6 TWINS masternodes with the git release tag "tags/v3.2.2.2"

./install.sh -p twins -c 6 -r "tags/v3.2.2.2"

Wipe all TWINS masternode data:

./install.sh -p twins -w

Install 2 TWINS masternodes and configure sentinel monitoring:

./install.sh -p twins -c 2 -s

Options

The install.sh script support the following parameters:

Long Option Short Option Values description
--project -p project,e.g."twins" shortname for the project
--net -n "4" / "6" ip type for masternode. (ipv)6 is default
--release -r e.g. "tags/v3.2.0.6" a specific git tag/branch, defaults to latest tested
--count -c number amount of masternodes to be configured
--update -u -- update specified masternode daemon, combine with -p flag
--sentinel -s -- install and configure sentinel for node monitoring
--wipe -w -- uninstall & wipe all related master node data, combine with -p flag
--help -h -- print help info
--startnodes -x -- starts masternode(s) after installation

Troubleshooting the masternode on the VPS

If you want to check the status of your masternode, the best way is currently running the cli e.g. for TWINS via

/usr/local/bin/twins-cli -conf=/etc/masternodes/twins_n1.conf getinfo

{
  "version": 1000302,
  "protocolversion": 70701,
  "walletversion": 61000,
  "balance": 0.00000000,
  "privatesend_balance": 0.00000000,
  "blocks": 209481,
  "timeoffset": 0,
  "connections": 5,
  "proxy": "",
  "difficulty": 42882.54964804553,
  "testnet": false,
  "keypoololdest": 1511380627,
  "keypoolsize": 1001,
  "paytxfee": 0.00000000,
  "relayfee": 0.00010000,
  "errors": ""
}

Help, Issues and Questions

I activated the "issues" option on github to give you a way to document defects and feature wishes. Feel free top open issues for problems / features you are missing here: https://github.com/masternodes/vps/issues.

I might not be able to reply immediately, but i do usually within a couple of days at worst. I will also happily take any pull requests that make masternode installations easier for everyone ;-)

If this script helped you in any way, please contribute some feedback. BTC donations also welcome and never forget:

Have fun, this is crypto after all!

BTC  33ENWZ9RCYBG7nv6ac8KxBUSuQX64Hx3x3

Management script (not yet implemented)

The management script release will follow within the next couple of days.

command description
nodemaster start twins (all|number) start all or a specific twins masternode(s)
nodemaster restart twins (all|number) stop all or a specific twins masternode(s)
nodemaster stop twins (all|number) restart all or a specific twins masternode(s)
nodemaster cleanup twins(all|number) delete chain data for all twins masternodes
nodemaster status twins (all|number) systemd process status for a twins masternode
nodemaster tail twins (all|number) tail debug logs for a twins masternode

Todo

  • provide my Dockerfile & Vagrantfile
  • write more test cases
  • implement a binary option (?)
  • output all supported cryptos as list within help

Errors

  • currently not fully idempotent

Ping me at contact@marsmenschen.com for questions and send some crypto my way if you are happy.

Have fun, this is crypto after all!

BTC  33ENWZ9RCYBG7nv6ac8KxBUSuQX64Hx3x3

About

A handy bash script to setup multiple crypto masternodes on one VPS in no time.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 100.0%