Skip to content

Instantly share code, notes, and snippets.

@icook
Last active May 19, 2018 17:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save icook/dec29098a851b8d7b226139ff9c4deb1 to your computer and use it in GitHub Desktop.
Save icook/dec29098a851b8d7b226139ff9c4deb1 to your computer and use it in GitHub Desktop.
PowerPool Mp3 Deployment Basics
# to reboot all coinservers at once. "status" is also useful instead of restart
systemctl restart bitmarkd-test-argon2.service bitmarkd-test-lyra2rev2.service bitmarkd-test-scrypt.service bitmarkd-test-sha256d.service bitmarkd-test-x17.service
# all service configs. powerpool-test runs the testnets, powerpool runs mainnet
ls -l /etc/systemd/system/
# main binary for testnet is /usr/local/bin/bitmarkd.0.9.7-devcoins@mp3.64b.s. I've been building this from /home/devcoins/coinsrc/bitmark-0.9.7/
# all datadirs are in /home/devcoins/.bitmark-{algoname}/
# a utility script is in /home/devcoins/runall.sh that allows running an rpc command on all bitmark coinservers
/home/devcoins/runall.sh getinfo
# to start all the non-bitmark testnets
systemctl start litecoind-test.service bitcoind-test.service verged-test-x17.service verged2-test-x17.service vertcoind-test.service vertcoind2-test.service unitusd-test.service unitusd2-test.service
# powerpool-test config is in /home/powerpool/powerpool_test_config.yml
# to view powerpool logs
journalctl -u powerpool-test.service -f
# to view powerpool info endpoint. The info endpoint shows tons of information about what is happening in powerpool
curl localhost:3856 | jq
# alternatively you can port forward and view it in a local browser
ssh -L 3856:localhost:3856 btm.mp3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment